pub struct AlgorithmInfo {
pub kem: String,
pub dsa: String,
pub symmetric: String,
pub hash: String,
pub security_level: SecurityLevel,
pub nist_fips: Vec<String>,
}Expand description
Algorithm information
Fields§
§kem: StringKEM algorithm
dsa: StringDSA algorithm
symmetric: StringSymmetric algorithm
hash: StringHash algorithm
security_level: SecurityLevelSecurity level
nist_fips: Vec<String>NIST FIPS standards
Trait Implementations§
Source§impl Clone for AlgorithmInfo
impl Clone for AlgorithmInfo
Source§fn clone(&self) -> AlgorithmInfo
fn clone(&self) -> AlgorithmInfo
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 AlgorithmInfo
impl Debug for AlgorithmInfo
Source§impl<'de> Deserialize<'de> for AlgorithmInfo
impl<'de> Deserialize<'de> for AlgorithmInfo
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 AlgorithmInfo
impl RefUnwindSafe for AlgorithmInfo
impl Send for AlgorithmInfo
impl Sync for AlgorithmInfo
impl Unpin for AlgorithmInfo
impl UnwindSafe for AlgorithmInfo
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