pub struct SecretHelperOutput {
pub private_key: String,
pub key_type: String,
pub encoding: String,
}Expand description
Output format from a secret helper command
Fields§
§private_key: StringPrivate key material (hex or base64 encoded)
key_type: StringKey type string
encoding: StringEncoding format (defaults to “hex”)
Implementations§
Trait Implementations§
Source§impl Debug for SecretHelperOutput
impl Debug for SecretHelperOutput
Source§impl<'de> Deserialize<'de> for SecretHelperOutput
impl<'de> Deserialize<'de> for SecretHelperOutput
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 SecretHelperOutput
impl RefUnwindSafe for SecretHelperOutput
impl Send for SecretHelperOutput
impl Sync for SecretHelperOutput
impl Unpin for SecretHelperOutput
impl UnsafeUnpin for SecretHelperOutput
impl UnwindSafe for SecretHelperOutput
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