pub struct SetData {
pub originating_id: EntityId,
pub receiving_id: EntityId,
pub request_id: u32,
pub fixed_datum_records: Vec<FixedDatum>,
pub variable_datum_records: Vec<VariableDatum>,
}Expand description
5.6.5.10 Set Data PDU
7.5.10 Set Data PDU
Fields§
§originating_id: EntityId§receiving_id: EntityId§request_id: u32§fixed_datum_records: Vec<FixedDatum>§variable_datum_records: Vec<VariableDatum>Implementations§
Source§impl SetData
impl SetData
pub fn builder() -> SetDataBuilder
pub fn into_builder(self) -> SetDataBuilder
pub fn into_pdu_body(self) -> PduBody
Trait Implementations§
Source§impl Interaction for SetData
impl Interaction for SetData
Source§impl SerializePdu for SetData
impl SerializePdu for SetData
fn serialize_pdu(&self, _version: SupportedVersion, buf: &mut BytesMut) -> u16
impl StructuralPartialEq for SetData
Auto Trait Implementations§
impl Freeze for SetData
impl RefUnwindSafe for SetData
impl Send for SetData
impl Sync for SetData
impl Unpin for SetData
impl UnwindSafe for SetData
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