pub struct DecryptedCheckResult {
pub is_safe: bool,
pub violations: Vec<String>,
pub proof: [u8; 32],
}Expand description
Decrypted check result
Fields§
§is_safe: boolIs input safe?
violations: Vec<String>List of violated rules
proof: [u8; 32]Check proof
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DecryptedCheckResult
impl RefUnwindSafe for DecryptedCheckResult
impl Send for DecryptedCheckResult
impl Sync for DecryptedCheckResult
impl Unpin for DecryptedCheckResult
impl UnwindSafe for DecryptedCheckResult
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