pub struct DeriveKeyOutput {
pub key: Option<String>,
pub salt: Option<String>,
}Fields§
§key: Option<String>§salt: Option<String>Implementations§
Source§impl DeriveKeyOutput
impl DeriveKeyOutput
pub fn new() -> DeriveKeyOutput
Trait Implementations§
Source§impl Clone for DeriveKeyOutput
impl Clone for DeriveKeyOutput
Source§fn clone(&self) -> DeriveKeyOutput
fn clone(&self) -> DeriveKeyOutput
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 DeriveKeyOutput
impl Debug for DeriveKeyOutput
Source§impl Default for DeriveKeyOutput
impl Default for DeriveKeyOutput
Source§fn default() -> DeriveKeyOutput
fn default() -> DeriveKeyOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeriveKeyOutput
impl<'de> Deserialize<'de> for DeriveKeyOutput
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 DeriveKeyOutput
impl PartialEq for DeriveKeyOutput
Source§fn eq(&self, other: &DeriveKeyOutput) -> bool
fn eq(&self, other: &DeriveKeyOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeriveKeyOutput
impl Serialize for DeriveKeyOutput
impl StructuralPartialEq for DeriveKeyOutput
Auto Trait Implementations§
impl Freeze for DeriveKeyOutput
impl RefUnwindSafe for DeriveKeyOutput
impl Send for DeriveKeyOutput
impl Sync for DeriveKeyOutput
impl Unpin for DeriveKeyOutput
impl UnsafeUnpin for DeriveKeyOutput
impl UnwindSafe for DeriveKeyOutput
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