pub struct KeyProfile {
pub key: Option<String>,
}Fields§
§key: Option<String>The key as stored. May be hex (128 chars, canonical) or base64 (86 chars, legacy/deprecated).
Trait Implementations§
Source§impl Clone for KeyProfile
impl Clone for KeyProfile
Source§fn clone(&self) -> KeyProfile
fn clone(&self) -> KeyProfile
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 KeyProfile
impl Debug for KeyProfile
Source§impl Default for KeyProfile
impl Default for KeyProfile
Source§fn default() -> KeyProfile
fn default() -> KeyProfile
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for KeyProfile
impl RefUnwindSafe for KeyProfile
impl Send for KeyProfile
impl Sync for KeyProfile
impl Unpin for KeyProfile
impl UnsafeUnpin for KeyProfile
impl UnwindSafe for KeyProfile
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