pub struct ActionRequest {
pub originating_id: EntityId,
pub receiving_id: EntityId,
pub request_id: u32,
pub action_id: ActionId,
pub fixed_datum_records: Vec<FixedDatum>,
pub variable_datum_records: Vec<VariableDatum>,
}Expand description
5.6.5.7 Action Request PDU
7.5.7 Action Request PDU
Fields§
§originating_id: EntityId§receiving_id: EntityId§request_id: u32§action_id: ActionId§fixed_datum_records: Vec<FixedDatum>§variable_datum_records: Vec<VariableDatum>Implementations§
Source§impl ActionRequest
impl ActionRequest
pub fn builder() -> ActionRequestBuilder
pub fn into_builder(self) -> ActionRequestBuilder
pub fn into_pdu_body(self) -> PduBody
Trait Implementations§
Source§impl BodyInfo for ActionRequest
impl BodyInfo for ActionRequest
Source§impl Clone for ActionRequest
impl Clone for ActionRequest
Source§fn clone(&self) -> ActionRequest
fn clone(&self) -> ActionRequest
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 ActionRequest
impl Debug for ActionRequest
Source§impl Default for ActionRequest
impl Default for ActionRequest
Source§fn default() -> ActionRequest
fn default() -> ActionRequest
Returns the “default value” for a type. Read more
Source§impl Interaction for ActionRequest
impl Interaction for ActionRequest
Source§impl PartialEq for ActionRequest
impl PartialEq for ActionRequest
Source§impl SerializePdu for ActionRequest
impl SerializePdu for ActionRequest
fn serialize_pdu(&self, _version: SupportedVersion, buf: &mut BytesMut) -> u16
impl StructuralPartialEq for ActionRequest
Auto Trait Implementations§
impl Freeze for ActionRequest
impl RefUnwindSafe for ActionRequest
impl Send for ActionRequest
impl Sync for ActionRequest
impl Unpin for ActionRequest
impl UnwindSafe for ActionRequest
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