pub struct DataQueryReliablePdu {
pub pdu_header: PduHeader,
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub required_reliability_service: u8,
pub pad1: u16,
pub pad2: u8,
pub request_id: u32,
pub time_interval: u32,
pub number_of_fixed_datum_records: u32,
pub number_of_variable_datum_records: u32,
pub fixed_datum_records: u64,
pub variable_datum_records: u64,
}
Expand description
Implemented according to IEEE 1278.1-2012 §7.11.9
Fields§
§pdu_header: PduHeader
§originating_entity_id: EntityId
§receiving_entity_id: EntityId
§required_reliability_service: u8
§pad1: u16
§pad2: u8
§request_id: u32
§time_interval: u32
§number_of_fixed_datum_records: u32
§number_of_variable_datum_records: u32
§fixed_datum_records: u64
§variable_datum_records: u64
Trait Implementations§
Source§impl Clone for DataQueryReliablePdu
impl Clone for DataQueryReliablePdu
Source§fn clone(&self) -> DataQueryReliablePdu
fn clone(&self) -> DataQueryReliablePdu
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DataQueryReliablePdu
impl Debug for DataQueryReliablePdu
Source§impl Default for DataQueryReliablePdu
impl Default for DataQueryReliablePdu
Source§impl Pdu for DataQueryReliablePdu
impl Pdu for DataQueryReliablePdu
impl Copy for DataQueryReliablePdu
Auto Trait Implementations§
impl Freeze for DataQueryReliablePdu
impl RefUnwindSafe for DataQueryReliablePdu
impl Send for DataQueryReliablePdu
impl Sync for DataQueryReliablePdu
impl Unpin for DataQueryReliablePdu
impl UnwindSafe for DataQueryReliablePdu
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