pub enum CardLifeCycle {
OpReady,
Initialized,
Secured,
CardLocked,
Terminated,
Unknown(u8),
}Expand description
Card life-cycle state (GPCS v2.3.1 Table 11-6).
Variants§
Trait Implementations§
Source§impl Clone for CardLifeCycle
impl Clone for CardLifeCycle
Source§fn clone(&self) -> CardLifeCycle
fn clone(&self) -> CardLifeCycle
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 moreimpl Copy for CardLifeCycle
Source§impl Debug for CardLifeCycle
impl Debug for CardLifeCycle
impl Eq for CardLifeCycle
Source§impl PartialEq for CardLifeCycle
impl PartialEq for CardLifeCycle
impl StructuralPartialEq for CardLifeCycle
Auto Trait Implementations§
impl Freeze for CardLifeCycle
impl RefUnwindSafe for CardLifeCycle
impl Send for CardLifeCycle
impl Sync for CardLifeCycle
impl Unpin for CardLifeCycle
impl UnsafeUnpin for CardLifeCycle
impl UnwindSafe for CardLifeCycle
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