pub struct KeyInfo {
pub key_id: String,
pub algorithm: SignatureAlgorithm,
pub created_at: String,
pub expires_at: Option<String>,
pub key_material: Vec<u8>,
pub is_private: bool,
pub fingerprint: String,
}Expand description
Cryptographic key information
Fields§
§key_id: String§algorithm: SignatureAlgorithm§created_at: String§expires_at: Option<String>§key_material: Vec<u8>§is_private: bool§fingerprint: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for KeyInfo
impl<'de> Deserialize<'de> for KeyInfo
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 KeyInfo
impl RefUnwindSafe for KeyInfo
impl Send for KeyInfo
impl Sync for KeyInfo
impl Unpin for KeyInfo
impl UnsafeUnpin for KeyInfo
impl UnwindSafe for KeyInfo
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