pub struct WebGpgSubkey {
pub fingerprint: Option<String>,
pub key_id: Option<String>,
pub primary_key_id: Option<String>,
pub key_creation_time: Option<String>,
pub id: Option<String>,
pub is_expired: Option<bool>,
pub created_at: Option<String>,
pub expired_at: Option<String>,
}
Expand description
WebGpgSubkey 模型
Fields§
§fingerprint: Option<String>
§key_id: Option<String>
§primary_key_id: Option<String>
§key_creation_time: Option<String>
§id: Option<String>
§is_expired: Option<bool>
§created_at: Option<String>
§expired_at: Option<String>
Trait Implementations§
Source§impl Clone for WebGpgSubkey
impl Clone for WebGpgSubkey
Source§fn clone(&self) -> WebGpgSubkey
fn clone(&self) -> WebGpgSubkey
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 WebGpgSubkey
impl Debug for WebGpgSubkey
Source§impl<'de> Deserialize<'de> for WebGpgSubkey
impl<'de> Deserialize<'de> for WebGpgSubkey
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
Auto Trait Implementations§
impl Freeze for WebGpgSubkey
impl RefUnwindSafe for WebGpgSubkey
impl Send for WebGpgSubkey
impl Sync for WebGpgSubkey
impl Unpin for WebGpgSubkey
impl UnwindSafe for WebGpgSubkey
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