pub struct AlgorithmConfig {
pub encryption: String,
pub hash: String,
pub kdf: KdfObject,
pub compression: bool,
}
Fields§
§encryption: String
§hash: String
§kdf: KdfObject
§compression: bool
Trait Implementations§
Source§impl Clone for AlgorithmConfig
impl Clone for AlgorithmConfig
Source§fn clone(&self) -> AlgorithmConfig
fn clone(&self) -> AlgorithmConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 AlgorithmConfig
impl Debug for AlgorithmConfig
Source§impl<'de> Deserialize<'de> for AlgorithmConfig
impl<'de> Deserialize<'de> for AlgorithmConfig
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 AlgorithmConfig
impl PartialEq for AlgorithmConfig
Source§impl Serialize for AlgorithmConfig
impl Serialize for AlgorithmConfig
impl StructuralPartialEq for AlgorithmConfig
Auto Trait Implementations§
impl Freeze for AlgorithmConfig
impl RefUnwindSafe for AlgorithmConfig
impl Send for AlgorithmConfig
impl Sync for AlgorithmConfig
impl Unpin for AlgorithmConfig
impl UnwindSafe for AlgorithmConfig
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