pub struct IsPartOfPdu {
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub relationship: Relationship,
pub part_location: Vector3Float,
pub named_location_id: NamedLocation,
pub part_entity_type: EntityType,
/* private fields */
}Expand description
Implemented according to IEEE 1278.1-2012 §7.8.5
Fields§
§originating_entity_id: EntityId§receiving_entity_id: EntityId§relationship: Relationship§part_location: Vector3Float§named_location_id: NamedLocation§part_entity_type: EntityTypeImplementations§
Source§impl IsPartOfPdu
impl IsPartOfPdu
Trait Implementations§
Source§impl Debug for IsPartOfPdu
impl Debug for IsPartOfPdu
Source§impl Default for IsPartOfPdu
impl Default for IsPartOfPdu
Source§impl Pdu for IsPartOfPdu
impl Pdu for IsPartOfPdu
type Header = PduHeader
fn header(&self) -> &Self::Header
fn header_mut(&mut self) -> &mut Self::Header
Source§fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
Source§fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
fn as_any(&self) -> &dyn Any
fn finalize(&mut self)
Auto Trait Implementations§
impl Freeze for IsPartOfPdu
impl RefUnwindSafe for IsPartOfPdu
impl Send for IsPartOfPdu
impl Sync for IsPartOfPdu
impl Unpin for IsPartOfPdu
impl UnwindSafe for IsPartOfPdu
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