pub struct TypeIdentifierTypeObjectPair {
pub type_identifier: Box<TypeIdentifier>,
pub type_object: Box<TypeObject>,
}Fields§
§type_identifier: Box<TypeIdentifier>§type_object: Box<TypeObject>Implementations§
Source§impl TypeIdentifierTypeObjectPair
impl TypeIdentifierTypeObjectPair
pub const SERIALIZE_KIND: SerializeKind = xidl_xcdr::SerializeKind::Cdr
Trait Implementations§
Source§impl XcdrDeserialize for TypeIdentifierTypeObjectPair
impl XcdrDeserialize for TypeIdentifierTypeObjectPair
fn deserialize<D: XcdrDeserializer + ?Sized>( deserializer: &mut D, ) -> XcdrResult<Self>
Source§impl XcdrSerialize for TypeIdentifierTypeObjectPair
impl XcdrSerialize for TypeIdentifierTypeObjectPair
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,
Auto Trait Implementations§
impl Freeze for TypeIdentifierTypeObjectPair
impl RefUnwindSafe for TypeIdentifierTypeObjectPair
impl Send for TypeIdentifierTypeObjectPair
impl Sync for TypeIdentifierTypeObjectPair
impl Unpin for TypeIdentifierTypeObjectPair
impl UnsafeUnpin for TypeIdentifierTypeObjectPair
impl UnwindSafe for TypeIdentifierTypeObjectPair
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