pub struct PDUHeaderRecord {
    pub protocol_version: ProtocolVersion,
    pub exercise_id: u8,
    pub pdu_type: PDUType,
    pub protocol_family: ProtocolFamily,
    pub timestamp: u32,
    pub length: u16,
    pub padding: u16,
}
Expand description

PDU Header Record as defined in IEEE 1278.1 standard. Used to communicate PDU information during the simulation.

Fields

protocol_version: ProtocolVersionexercise_id: u8pdu_type: PDUTypeprotocol_family: ProtocolFamilytimestamp: u32length: u16padding: u16

Implementations

Provides a function to create a new PDUHeaderRecord. Timestamps are automatically generated using the current system time.

Provides a function to create a default PDUHeaderRecord. The header uses exercise ID 1. Timestamps are automatically generated using the current system time.

Calculates the timestamp in DIS time units (1.68 micro-seconds) within a micro-second

Fills a BytesMut struct with a PDUHeaderRecord serialised into binary. This buffer is then ready to be sent via UDP to the simluation network.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.