pub enum SecurityResult {
NonInterference,
InformationLeak {
path: Vec<String>,
},
TimingLeak {
condition: VerifyExpr,
},
Unknown,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SecurityResult
impl RefUnwindSafe for SecurityResult
impl Send for SecurityResult
impl Sync for SecurityResult
impl Unpin for SecurityResult
impl UnsafeUnpin for SecurityResult
impl UnwindSafe for SecurityResult
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