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