pub struct ExportClassicKey {
pub accessibility: Option<String>,
pub export_public_key: Option<bool>,
pub ignore_cache: Option<String>,
pub json: Option<bool>,
pub name: String,
pub token: Option<String>,
pub uid_token: Option<String>,
pub version: Option<i32>,
pub wrapping_key_name: Option<String>,
}Expand description
ExportClassicKey : ExportClassicKey is a command that returns the classic key material
Fields§
§accessibility: Option<String>for personal password manager
export_public_key: Option<bool>Use this option to output only public key
ignore_cache: Option<String>Retrieve the Secret value without checking the Gateway’s cache [true/false]. This flag is only relevant when using the RestAPI
json: Option<bool>Set output format to JSON
name: StringClassicKey name
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
version: Option<i32>Classic key version
wrapping_key_name: Option<String>Classic key name to wrap the key material with
Implementations§
Source§impl ExportClassicKey
impl ExportClassicKey
Sourcepub fn new(name: String) -> ExportClassicKey
pub fn new(name: String) -> ExportClassicKey
ExportClassicKey is a command that returns the classic key material
Trait Implementations§
Source§impl Clone for ExportClassicKey
impl Clone for ExportClassicKey
Source§fn clone(&self) -> ExportClassicKey
fn clone(&self) -> ExportClassicKey
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 ExportClassicKey
impl Debug for ExportClassicKey
Source§impl Default for ExportClassicKey
impl Default for ExportClassicKey
Source§fn default() -> ExportClassicKey
fn default() -> ExportClassicKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportClassicKey
impl<'de> Deserialize<'de> for ExportClassicKey
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
Source§impl PartialEq for ExportClassicKey
impl PartialEq for ExportClassicKey
Source§fn eq(&self, other: &ExportClassicKey) -> bool
fn eq(&self, other: &ExportClassicKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExportClassicKey
impl Serialize for ExportClassicKey
impl StructuralPartialEq for ExportClassicKey
Auto Trait Implementations§
impl Freeze for ExportClassicKey
impl RefUnwindSafe for ExportClassicKey
impl Send for ExportClassicKey
impl Sync for ExportClassicKey
impl Unpin for ExportClassicKey
impl UnsafeUnpin for ExportClassicKey
impl UnwindSafe for ExportClassicKey
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