pub enum KeyringRevealer {
Certifier,
PubKey(PublicKey),
}Expand description
Identifies who reveals a keyring.
Variants§
Certifier
The certifier reveals the keyring.
PubKey(PublicKey)
A specific public key reveals the keyring.
Trait Implementations§
Source§impl Clone for KeyringRevealer
impl Clone for KeyringRevealer
Source§fn clone(&self) -> KeyringRevealer
fn clone(&self) -> KeyringRevealer
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 moreAuto Trait Implementations§
impl Freeze for KeyringRevealer
impl !RefUnwindSafe for KeyringRevealer
impl Send for KeyringRevealer
impl Sync for KeyringRevealer
impl Unpin for KeyringRevealer
impl UnsafeUnpin for KeyringRevealer
impl !UnwindSafe for KeyringRevealer
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