pub struct DataQueryPdu {
pub pdu_header: PduHeader,
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
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.5.9
Fields§
§pdu_header: PduHeader
§originating_entity_id: EntityId
§receiving_entity_id: EntityId
§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 DataQueryPdu
impl Clone for DataQueryPdu
Source§fn clone(&self) -> DataQueryPdu
fn clone(&self) -> DataQueryPdu
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 DataQueryPdu
impl Debug for DataQueryPdu
Source§impl Default for DataQueryPdu
impl Default for DataQueryPdu
Source§impl Pdu for DataQueryPdu
impl Pdu for DataQueryPdu
impl Copy for DataQueryPdu
Auto Trait Implementations§
impl Freeze for DataQueryPdu
impl RefUnwindSafe for DataQueryPdu
impl Send for DataQueryPdu
impl Sync for DataQueryPdu
impl Unpin for DataQueryPdu
impl UnwindSafe for DataQueryPdu
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