pub struct OpenPgpKey {
pub fingerprint: String,
pub url: String,
}Expand description
An OpenPGP public key reference.
Fields§
§fingerprint: StringKey fingerprint (40 hex characters).
url: StringURL to download the public key.
Trait Implementations§
Source§impl Clone for OpenPgpKey
impl Clone for OpenPgpKey
Source§fn clone(&self) -> OpenPgpKey
fn clone(&self) -> OpenPgpKey
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 moreSource§impl Debug for OpenPgpKey
impl Debug for OpenPgpKey
Source§impl<'de> Deserialize<'de> for OpenPgpKey
impl<'de> Deserialize<'de> for OpenPgpKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OpenPgpKey
impl PartialEq for OpenPgpKey
Source§impl Serialize for OpenPgpKey
impl Serialize for OpenPgpKey
impl StructuralPartialEq for OpenPgpKey
Auto Trait Implementations§
impl Freeze for OpenPgpKey
impl RefUnwindSafe for OpenPgpKey
impl Send for OpenPgpKey
impl Sync for OpenPgpKey
impl Unpin for OpenPgpKey
impl UnsafeUnpin for OpenPgpKey
impl UnwindSafe for OpenPgpKey
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