pub struct GpgKeyFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub fingerprint: String,
pub keyid: String,
}Expand description
Representation of the gpg_key-full resource
Fields§
§self_link: Option<Url>The canonical link to this resource.
web_link: Option<Url>The canonical human-addressable web link to this resource.
resource_type_link: Option<Url>The link to the WADL description of this resource.
http_etag: Option<String>The value of the HTTP ETag for this resource.
fingerprint: StringUser Fingerprint
keyid: StringOpenPGP key ID
Implementations§
Trait Implementations§
Source§impl Clone for GpgKeyFull
impl Clone for GpgKeyFull
Source§fn clone(&self) -> GpgKeyFull
fn clone(&self) -> GpgKeyFull
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 GpgKeyFull
impl Debug for GpgKeyFull
Source§impl<'de> Deserialize<'de> for GpgKeyFull
impl<'de> Deserialize<'de> for GpgKeyFull
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 GpgKeyFull
impl PartialEq for GpgKeyFull
Source§impl Serialize for GpgKeyFull
impl Serialize for GpgKeyFull
impl StructuralPartialEq for GpgKeyFull
Auto Trait Implementations§
impl Freeze for GpgKeyFull
impl RefUnwindSafe for GpgKeyFull
impl Send for GpgKeyFull
impl Sync for GpgKeyFull
impl Unpin for GpgKeyFull
impl UnwindSafe for GpgKeyFull
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