pub enum RandomStatus {
Ready,
Locking(String),
Masking(String),
WaitingSecrets,
Shared,
}Variants§
Trait Implementations§
Source§impl BorshDeserialize for RandomStatuswhere
String: BorshDeserialize,
impl BorshDeserialize for RandomStatuswhere
String: BorshDeserialize,
Source§impl BorshSerialize for RandomStatuswhere
String: BorshSerialize,
impl BorshSerialize for RandomStatuswhere
String: BorshSerialize,
Source§impl Clone for RandomStatus
impl Clone for RandomStatus
Source§fn clone(&self) -> RandomStatus
fn clone(&self) -> RandomStatus
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 RandomStatus
impl Debug for RandomStatus
Source§impl Default for RandomStatus
impl Default for RandomStatus
Source§fn default() -> RandomStatus
fn default() -> RandomStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for RandomStatus
impl PartialEq for RandomStatus
impl Eq for RandomStatus
impl StructuralPartialEq for RandomStatus
Auto Trait Implementations§
impl Freeze for RandomStatus
impl RefUnwindSafe for RandomStatus
impl Send for RandomStatus
impl Sync for RandomStatus
impl Unpin for RandomStatus
impl UnwindSafe for RandomStatus
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