#[repr(u8)]pub enum SelectMode {
Always = 0,
Disabled = 1,
NonPolling = 2,
}Expand description
Select mode configuration
Variants§
Always = 0
Send Select command before every tag operation
Disabled = 1
Do not send Select command before tag operations
NonPolling = 2
Send Select only before non-polling operations (Read, Write, Lock, Kill)
Trait Implementations§
Source§impl Clone for SelectMode
impl Clone for SelectMode
Source§fn clone(&self) -> SelectMode
fn clone(&self) -> SelectMode
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 SelectMode
impl Debug for SelectMode
Source§impl Default for SelectMode
impl Default for SelectMode
Source§fn default() -> SelectMode
fn default() -> SelectMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for SelectMode
impl PartialEq for SelectMode
impl Copy for SelectMode
impl Eq for SelectMode
impl StructuralPartialEq for SelectMode
Auto Trait Implementations§
impl Freeze for SelectMode
impl RefUnwindSafe for SelectMode
impl Send for SelectMode
impl Sync for SelectMode
impl Unpin for SelectMode
impl UnwindSafe for SelectMode
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