#[repr(u8)]pub enum CryptoIsIdle {
BUSY = 0,
IDLE = 1,
}Variants§
Implementations§
Source§impl CryptoIsIdle
impl CryptoIsIdle
Trait Implementations§
Source§impl Clone for CryptoIsIdle
impl Clone for CryptoIsIdle
Source§fn clone(&self) -> CryptoIsIdle
fn clone(&self) -> CryptoIsIdle
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 CryptoIsIdle
impl Debug for CryptoIsIdle
Source§impl From<CryptoIsIdle> for u8
impl From<CryptoIsIdle> for u8
Source§fn from(val: CryptoIsIdle) -> u8
fn from(val: CryptoIsIdle) -> u8
Converts to this type from the input type.
Source§impl From<u8> for CryptoIsIdle
impl From<u8> for CryptoIsIdle
Source§fn from(val: u8) -> CryptoIsIdle
fn from(val: u8) -> CryptoIsIdle
Converts to this type from the input type.
Source§impl Ord for CryptoIsIdle
impl Ord for CryptoIsIdle
Source§fn cmp(&self, other: &CryptoIsIdle) -> Ordering
fn cmp(&self, other: &CryptoIsIdle) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CryptoIsIdle
impl PartialEq for CryptoIsIdle
Source§impl PartialOrd for CryptoIsIdle
impl PartialOrd for CryptoIsIdle
impl Copy for CryptoIsIdle
impl Eq for CryptoIsIdle
impl StructuralPartialEq for CryptoIsIdle
Auto Trait Implementations§
impl Freeze for CryptoIsIdle
impl RefUnwindSafe for CryptoIsIdle
impl Send for CryptoIsIdle
impl Sync for CryptoIsIdle
impl Unpin for CryptoIsIdle
impl UnwindSafe for CryptoIsIdle
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