pub struct ExportedGhostKey {
pub fingerprint: String,
pub certificate_pem: String,
pub signing_key_pem: String,
pub label: Option<String>,
pub notary_info: String,
}Expand description
A ghostkey exported for backup (includes private signing key).
Fields§
§fingerprint: String§certificate_pem: String§signing_key_pem: String§label: Option<String>§notary_info: StringTrait Implementations§
Source§impl Clone for ExportedGhostKey
impl Clone for ExportedGhostKey
Source§fn clone(&self) -> ExportedGhostKey
fn clone(&self) -> ExportedGhostKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExportedGhostKey
impl Debug for ExportedGhostKey
Source§impl<'de> Deserialize<'de> for ExportedGhostKey
impl<'de> Deserialize<'de> for ExportedGhostKey
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 ExportedGhostKey
impl RefUnwindSafe for ExportedGhostKey
impl Send for ExportedGhostKey
impl Sync for ExportedGhostKey
impl Unpin for ExportedGhostKey
impl UnsafeUnpin for ExportedGhostKey
impl UnwindSafe for ExportedGhostKey
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