pub struct MinimalMapType {
pub collection_flag: Box<CollectionTypeFlag>,
pub header: Box<MinimalCollectionHeader>,
pub key: Box<MinimalCollectionElement>,
pub element: Box<MinimalCollectionElement>,
}Fields§
§collection_flag: Box<CollectionTypeFlag>§header: Box<MinimalCollectionHeader>§key: Box<MinimalCollectionElement>§element: Box<MinimalCollectionElement>Implementations§
Source§impl MinimalMapType
impl MinimalMapType
pub const SERIALIZE_KIND: SerializeKind = xidl_xcdr::SerializeKind::Cdr
Trait Implementations§
Source§impl XcdrDeserialize for MinimalMapType
impl XcdrDeserialize for MinimalMapType
fn deserialize<D: XcdrDeserializer + ?Sized>( deserializer: &mut D, ) -> XcdrResult<Self>
Source§impl XcdrSerialize for MinimalMapType
impl XcdrSerialize for MinimalMapType
fn serialize_kind(&self) -> SerializeKind
fn serialize_with<S: XcdrSerializer + ?Sized>( &self, serializer: &mut S, ) -> XcdrResult<()>
fn serialize(&self, buf: &mut [u8]) -> Result<usize, XcdrError>where
Self: Sized,
Source§impl XidlTypeObject for MinimalMapType
impl XidlTypeObject for MinimalMapType
Auto Trait Implementations§
impl Freeze for MinimalMapType
impl RefUnwindSafe for MinimalMapType
impl Send for MinimalMapType
impl Sync for MinimalMapType
impl Unpin for MinimalMapType
impl UnsafeUnpin for MinimalMapType
impl UnwindSafe for MinimalMapType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more