pub struct DataQuery {
pub originating_id: EntityId,
pub receiving_id: EntityId,
pub request_id: u32,
pub time_interval: u32,
pub fixed_datum_records: Vec<VariableRecordType>,
pub variable_datum_records: Vec<VariableRecordType>,
}Fields§
§originating_id: EntityId§receiving_id: EntityId§request_id: u32§time_interval: u32§fixed_datum_records: Vec<VariableRecordType>§variable_datum_records: Vec<VariableRecordType>Implementations§
Source§impl DataQuery
impl DataQuery
pub fn builder() -> DataQueryBuilder
pub fn into_builder(self) -> DataQueryBuilder
pub fn into_pdu_body(self) -> PduBody
Trait Implementations§
Source§impl Interaction for DataQuery
impl Interaction for DataQuery
Source§impl SerializePdu for DataQuery
impl SerializePdu for DataQuery
fn serialize_pdu(&self, _version: SupportedVersion, buf: &mut BytesMut) -> u16
impl StructuralPartialEq for DataQuery
Auto Trait Implementations§
impl Freeze for DataQuery
impl RefUnwindSafe for DataQuery
impl Send for DataQuery
impl Sync for DataQuery
impl Unpin for DataQuery
impl UnwindSafe for DataQuery
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