pub struct InvokeResponseEntry {
pub command_ref: Option<u16>,
pub response: InvokeResponse,
}Expand description
One parsed InvokeResponseIB from a batched response, with its CommandRef
(CommandDataIB / CommandStatusIB tag 2) for matching to the request command.
Fields§
§command_ref: Option<u16>The CommandRef echoed by the device, if present.
response: InvokeResponseThe response: a command payload or a status.
Trait Implementations§
Source§impl Clone for InvokeResponseEntry
impl Clone for InvokeResponseEntry
Source§fn clone(&self) -> InvokeResponseEntry
fn clone(&self) -> InvokeResponseEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InvokeResponseEntry
impl Debug for InvokeResponseEntry
impl Eq for InvokeResponseEntry
Source§impl PartialEq for InvokeResponseEntry
impl PartialEq for InvokeResponseEntry
impl StructuralPartialEq for InvokeResponseEntry
Auto Trait Implementations§
impl Freeze for InvokeResponseEntry
impl RefUnwindSafe for InvokeResponseEntry
impl Send for InvokeResponseEntry
impl Sync for InvokeResponseEntry
impl Unpin for InvokeResponseEntry
impl UnsafeUnpin for InvokeResponseEntry
impl UnwindSafe for InvokeResponseEntry
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