pub struct GpgKeyEmail {
pub email: Option<String>,
pub verified: Option<bool>,
}
Expand description
GpgKeyEmail : GPGKeyEmail an email attached to a GPGKey
Fields§
§email: Option<String>
§verified: Option<bool>
Implementations§
Source§impl GpgKeyEmail
impl GpgKeyEmail
Sourcepub fn new() -> GpgKeyEmail
pub fn new() -> GpgKeyEmail
GPGKeyEmail an email attached to a GPGKey
Trait Implementations§
Source§impl Clone for GpgKeyEmail
impl Clone for GpgKeyEmail
Source§fn clone(&self) -> GpgKeyEmail
fn clone(&self) -> GpgKeyEmail
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 GpgKeyEmail
impl Debug for GpgKeyEmail
Source§impl Default for GpgKeyEmail
impl Default for GpgKeyEmail
Source§fn default() -> GpgKeyEmail
fn default() -> GpgKeyEmail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GpgKeyEmail
impl<'de> Deserialize<'de> for GpgKeyEmail
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 GpgKeyEmail
impl PartialEq for GpgKeyEmail
Source§impl Serialize for GpgKeyEmail
impl Serialize for GpgKeyEmail
impl StructuralPartialEq for GpgKeyEmail
Auto Trait Implementations§
impl Freeze for GpgKeyEmail
impl RefUnwindSafe for GpgKeyEmail
impl Send for GpgKeyEmail
impl Sync for GpgKeyEmail
impl Unpin for GpgKeyEmail
impl UnwindSafe for GpgKeyEmail
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