pub enum InventoryEmbeddedCommandContent {
ReadTagData(EmbeddedReadTagData),
}Expand description
Typed inventory embedded command content.
The protocol currently documents embedded command opcode 0x28
(Read Tag Data) for inventory commands.
Variants§
ReadTagData(EmbeddedReadTagData)
Embedded command 0x28 (Read Tag Data).
Trait Implementations§
Source§impl Clone for InventoryEmbeddedCommandContent
impl Clone for InventoryEmbeddedCommandContent
Source§fn clone(&self) -> InventoryEmbeddedCommandContent
fn clone(&self) -> InventoryEmbeddedCommandContent
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 PartialEq for InventoryEmbeddedCommandContent
impl PartialEq for InventoryEmbeddedCommandContent
Source§fn eq(&self, other: &InventoryEmbeddedCommandContent) -> bool
fn eq(&self, other: &InventoryEmbeddedCommandContent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InventoryEmbeddedCommandContent
impl StructuralPartialEq for InventoryEmbeddedCommandContent
Auto Trait Implementations§
impl Freeze for InventoryEmbeddedCommandContent
impl RefUnwindSafe for InventoryEmbeddedCommandContent
impl Send for InventoryEmbeddedCommandContent
impl Sync for InventoryEmbeddedCommandContent
impl Unpin for InventoryEmbeddedCommandContent
impl UnsafeUnpin for InventoryEmbeddedCommandContent
impl UnwindSafe for InventoryEmbeddedCommandContent
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