Struct xmpp_parsers::openpgp::PubKeyMeta
source · pub struct PubKeyMeta {
pub v4fingerprint: String,
pub date: DateTime,
}
Expand description
Public key metadata
Fields§
§v4fingerprint: String
OpenPGP v4 fingerprint
date: DateTime
Time the key was published or updated
Trait Implementations§
source§impl Clone for PubKeyMeta
impl Clone for PubKeyMeta
source§fn clone(&self) -> PubKeyMeta
fn clone(&self) -> PubKeyMeta
Returns a copy 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 PubKeyMeta
impl Debug for PubKeyMeta
source§impl From<PubKeyMeta> for Element
impl From<PubKeyMeta> for Element
source§fn from(elem: PubKeyMeta) -> Element
fn from(elem: PubKeyMeta) -> Element
Converts to this type from the input type.
source§impl PartialEq for PubKeyMeta
impl PartialEq for PubKeyMeta
source§fn eq(&self, other: &PubKeyMeta) -> bool
fn eq(&self, other: &PubKeyMeta) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for PubKeyMeta
impl TryFrom<Element> for PubKeyMeta
impl StructuralPartialEq for PubKeyMeta
Auto Trait Implementations§
impl RefUnwindSafe for PubKeyMeta
impl Send for PubKeyMeta
impl Sync for PubKeyMeta
impl Unpin for PubKeyMeta
impl UnwindSafe for PubKeyMeta
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