pub enum CipherOwner {
Unclaimed,
Assigned(String),
MultiAssigned(Vec<String>),
Revealed,
}Variants§
Trait Implementations§
Source§impl BorshDeserialize for CipherOwner
impl BorshDeserialize for CipherOwner
Source§impl BorshSerialize for CipherOwner
impl BorshSerialize for CipherOwner
Source§impl Clone for CipherOwner
impl Clone for CipherOwner
Source§fn clone(&self) -> CipherOwner
fn clone(&self) -> CipherOwner
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 CipherOwner
impl Debug for CipherOwner
Source§impl Default for CipherOwner
impl Default for CipherOwner
Source§fn default() -> CipherOwner
fn default() -> CipherOwner
Returns the “default value” for a type. Read more
Source§impl PartialEq for CipherOwner
impl PartialEq for CipherOwner
impl Eq for CipherOwner
impl StructuralPartialEq for CipherOwner
Auto Trait Implementations§
impl Freeze for CipherOwner
impl RefUnwindSafe for CipherOwner
impl Send for CipherOwner
impl Sync for CipherOwner
impl Unpin for CipherOwner
impl UnwindSafe for CipherOwner
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