pub struct AlgorithmMetadata {
pub algorithm: Algorithm,
pub category: AlgorithmCategory,
pub security_level: u32,
pub name: &'static str,
pub description: &'static str,
pub enabled: bool,
}Expand description
Algorithm metadata
Fields§
§algorithm: Algorithm§category: AlgorithmCategory§security_level: u32§name: &'static str§description: &'static str§enabled: boolTrait Implementations§
Source§impl Clone for AlgorithmMetadata
impl Clone for AlgorithmMetadata
Source§fn clone(&self) -> AlgorithmMetadata
fn clone(&self) -> AlgorithmMetadata
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 moreAuto Trait Implementations§
impl Freeze for AlgorithmMetadata
impl RefUnwindSafe for AlgorithmMetadata
impl Send for AlgorithmMetadata
impl Sync for AlgorithmMetadata
impl Unpin for AlgorithmMetadata
impl UnsafeUnpin for AlgorithmMetadata
impl UnwindSafe for AlgorithmMetadata
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