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