pub struct StoredContact {
pub name: String,
pub key: ContactPublicKey,
}Expand description
Contact entry stored in a VaultDirectory.
Fields§
§name: StringUser-assigned contact name.
key: ContactPublicKeyContact public key associated with name.
Trait Implementations§
Source§impl Clone for StoredContact
impl Clone for StoredContact
Source§fn clone(&self) -> StoredContact
fn clone(&self) -> StoredContact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StoredContact
impl Debug for StoredContact
impl Eq for StoredContact
Source§impl PartialEq for StoredContact
impl PartialEq for StoredContact
impl StructuralPartialEq for StoredContact
Auto Trait Implementations§
impl Freeze for StoredContact
impl RefUnwindSafe for StoredContact
impl Send for StoredContact
impl Sync for StoredContact
impl Unpin for StoredContact
impl UnsafeUnpin for StoredContact
impl UnwindSafe for StoredContact
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