pub struct IdentityCertificate {
pub certificate: Certificate,
pub certifier_info: IdentityCertifier,
pub publicly_revealed_keyring: HashMap<String, String>,
pub decrypted_fields: HashMap<String, String>,
}Expand description
An identity certificate with decoded fields and certifier info.
Fields§
§certificate: Certificate§certifier_info: IdentityCertifier§publicly_revealed_keyring: HashMap<String, String>§decrypted_fields: HashMap<String, String>Trait Implementations§
Source§impl Clone for IdentityCertificate
impl Clone for IdentityCertificate
Source§fn clone(&self) -> IdentityCertificate
fn clone(&self) -> IdentityCertificate
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 IdentityCertificate
impl !RefUnwindSafe for IdentityCertificate
impl Send for IdentityCertificate
impl Sync for IdentityCertificate
impl Unpin for IdentityCertificate
impl UnsafeUnpin for IdentityCertificate
impl !UnwindSafe for IdentityCertificate
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