#[non_exhaustive]pub enum AssuranceClass {
Ordinary,
CheckedBackend,
Secret,
HighAssurance,
}Expand description
Reporting category for an operation’s assurance boundary.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ordinary
Ordinary input-dependent operation.
CheckedBackend
Ordinary operation with redundant backend checking.
Secret
Constant-time-oriented bounded secret operation.
HighAssurance
Deployment-attested high-assurance operation.
Implementations§
Trait Implementations§
Source§impl Clone for AssuranceClass
impl Clone for AssuranceClass
Source§fn clone(&self) -> AssuranceClass
fn clone(&self) -> AssuranceClass
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 moreimpl Copy for AssuranceClass
Source§impl Debug for AssuranceClass
impl Debug for AssuranceClass
impl Eq for AssuranceClass
Source§impl Hash for AssuranceClass
impl Hash for AssuranceClass
Source§impl PartialEq for AssuranceClass
impl PartialEq for AssuranceClass
impl StructuralPartialEq for AssuranceClass
Auto Trait Implementations§
impl Freeze for AssuranceClass
impl RefUnwindSafe for AssuranceClass
impl Send for AssuranceClass
impl Sync for AssuranceClass
impl Unpin for AssuranceClass
impl UnsafeUnpin for AssuranceClass
impl UnwindSafe for AssuranceClass
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