pub struct InitStatus {
pub authorized: bool,
pub pubkey: String,
pub display_name: Option<String>,
}Expand description
Status of an existing vault relative to a given key.
Fields§
Whether the key’s pubkey is in the vault’s recipient list.
pubkey: StringThe public key derived from the secret key.
display_name: Option<String>Display name from encrypted meta, if decryptable and present.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InitStatus
impl RefUnwindSafe for InitStatus
impl Send for InitStatus
impl Sync for InitStatus
impl Unpin for InitStatus
impl UnsafeUnpin for InitStatus
impl UnwindSafe for InitStatus
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