Enum ledger_mob_core::engine::IdentState
source · pub enum IdentState {
Pending,
Approved,
Denied,
}
Expand description
Identity challenge state
Variants§
Pending
Challenge loaded, pending approval
Approved
Challenge approved, signing allowed
Denied
Challenged rejected, return error
Trait Implementations§
source§impl Clone for IdentState
impl Clone for IdentState
source§fn clone(&self) -> IdentState
fn clone(&self) -> IdentState
Returns a copy 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 IdentState
impl Debug for IdentState
source§impl Default for IdentState
impl Default for IdentState
source§fn default() -> IdentState
fn default() -> IdentState
Returns the “default value” for a type. Read more
source§impl FromStr for IdentState
impl FromStr for IdentState
source§impl IntoEnumIterator for IdentState
impl IntoEnumIterator for IdentState
source§impl PartialEq<IdentState> for IdentState
impl PartialEq<IdentState> for IdentState
source§fn eq(&self, other: &IdentState) -> bool
fn eq(&self, other: &IdentState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<&str> for IdentState
impl TryFrom<&str> for IdentState
impl Copy for IdentState
impl StructuralPartialEq for IdentState
Auto Trait Implementations§
impl RefUnwindSafe for IdentState
impl Send for IdentState
impl Sync for IdentState
impl Unpin for IdentState
impl UnwindSafe for IdentState
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