pub struct PublicKeyConfig {
pub caller_reference: String,
pub name: String,
pub encoded_key: String,
pub comment: String,
}Expand description
Public key configuration.
Fields§
§caller_reference: StringCaller reference.
name: StringName.
encoded_key: StringPEM-encoded public key.
comment: StringComment.
Trait Implementations§
Source§impl Clone for PublicKeyConfig
impl Clone for PublicKeyConfig
Source§fn clone(&self) -> PublicKeyConfig
fn clone(&self) -> PublicKeyConfig
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 PublicKeyConfig
impl Debug for PublicKeyConfig
Source§impl Default for PublicKeyConfig
impl Default for PublicKeyConfig
Source§fn default() -> PublicKeyConfig
fn default() -> PublicKeyConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PublicKeyConfig
impl<'de> Deserialize<'de> for PublicKeyConfig
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 PublicKeyConfig
impl RefUnwindSafe for PublicKeyConfig
impl Send for PublicKeyConfig
impl Sync for PublicKeyConfig
impl Unpin for PublicKeyConfig
impl UnsafeUnpin for PublicKeyConfig
impl UnwindSafe for PublicKeyConfig
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