#[repr(u8)]pub enum SelectAction {
Action0 = 0,
Action1 = 1,
Action2 = 2,
Action3 = 3,
Action4 = 4,
Action5 = 5,
Action6 = 6,
Action7 = 7,
}Expand description
Action for Select command (per EPC Gen2)
Variants§
Action0 = 0
Match: assert SL or inventoried→A, Non-match: deassert SL or inventoried→B
Action1 = 1
Match: assert SL or inventoried→A, Non-match: do nothing
Action2 = 2
Match: do nothing, Non-match: deassert SL or inventoried→B
Action3 = 3
Match: negate SL or invert, Non-match: do nothing
Action4 = 4
Match: deassert SL or inventoried→B, Non-match: assert SL or inventoried→A
Action5 = 5
Match: deassert SL or inventoried→B, Non-match: do nothing
Action6 = 6
Match: do nothing, Non-match: assert SL or inventoried→A
Action7 = 7
Match: do nothing, Non-match: negate SL or invert
Trait Implementations§
Source§impl Clone for SelectAction
impl Clone for SelectAction
Source§fn clone(&self) -> SelectAction
fn clone(&self) -> SelectAction
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 SelectAction
impl Debug for SelectAction
Source§impl Default for SelectAction
impl Default for SelectAction
Source§fn default() -> SelectAction
fn default() -> SelectAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for SelectAction
impl PartialEq for SelectAction
impl Copy for SelectAction
impl Eq for SelectAction
impl StructuralPartialEq for SelectAction
Auto Trait Implementations§
impl Freeze for SelectAction
impl RefUnwindSafe for SelectAction
impl Send for SelectAction
impl Sync for SelectAction
impl Unpin for SelectAction
impl UnwindSafe for SelectAction
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