pub struct LastOperation(/* private fields */);Implementations§
Source§impl LastOperation
impl LastOperation
Sourcepub const LO_PROGRESS: Self
pub const LO_PROGRESS: Self
Indicates that the operation is in progress.
Sourcepub const LO_RECONSTRUCT: Self
pub const LO_RECONSTRUCT: Self
Indicates that the last operation was Reconstruct
Sourcepub const LO_GET_KEY: Self
pub const LO_GET_KEY: Self
Indicates that the last operation was Get Key.
Sourcepub const LO_WRAP_GEN_RND: Self
pub const LO_WRAP_GEN_RND: Self
Indicates that the last operation was Wrap Generated Random.
Sourcepub const LO_GEN_RND: Self
pub const LO_GEN_RND: Self
Indicates that the last operation was Generate Random.
Sourcepub const LO_TEST_MEMORY: Self
pub const LO_TEST_MEMORY: Self
Indicates that the last operation was Test Memory.
Sourcepub const LO_TEST_PUF: Self
pub const LO_TEST_PUF: Self
Indicates that the last operation was Test PUF.
Sourcepub const LO_INITIALIZATION: Self
pub const LO_INITIALIZATION: Self
Indicates that the last operation was Initialization.
Sourcepub const LO_ZEROIZE: Self
pub const LO_ZEROIZE: Self
Indicates that the last operation was Zeroize.
Source§impl LastOperation
impl LastOperation
Trait Implementations§
Source§impl Clone for LastOperation
impl Clone for LastOperation
Source§fn clone(&self) -> LastOperation
fn clone(&self) -> LastOperation
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 LastOperation
impl Debug for LastOperation
Source§impl From<LastOperation> for u8
impl From<LastOperation> for u8
Source§fn from(val: LastOperation) -> u8
fn from(val: LastOperation) -> u8
Converts to this type from the input type.
Source§impl From<u8> for LastOperation
impl From<u8> for LastOperation
Source§fn from(val: u8) -> LastOperation
fn from(val: u8) -> LastOperation
Converts to this type from the input type.
Source§impl Ord for LastOperation
impl Ord for LastOperation
Source§fn cmp(&self, other: &LastOperation) -> Ordering
fn cmp(&self, other: &LastOperation) -> 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 LastOperation
impl PartialEq for LastOperation
Source§impl PartialOrd for LastOperation
impl PartialOrd for LastOperation
impl Copy for LastOperation
impl Eq for LastOperation
impl StructuralPartialEq for LastOperation
Auto Trait Implementations§
impl Freeze for LastOperation
impl RefUnwindSafe for LastOperation
impl Send for LastOperation
impl Sync for LastOperation
impl Unpin for LastOperation
impl UnwindSafe for LastOperation
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