pub struct EncryptedCheckResult {
pub encrypted_comparisons: HashMap<String, Ciphertext>,
pub check_proof: [u8; 32],
pub timestamp: u64,
pub input_noise: i32,
}Expand description
Result of encrypted check (still encrypted)
Fields§
§encrypted_comparisons: HashMap<String, Ciphertext>Encrypted comparison results
check_proof: [u8; 32]Proof of check
timestamp: u64Timestamp
input_noise: i32Input noise budget
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EncryptedCheckResult
impl RefUnwindSafe for EncryptedCheckResult
impl Send for EncryptedCheckResult
impl Sync for EncryptedCheckResult
impl Unpin for EncryptedCheckResult
impl UnwindSafe for EncryptedCheckResult
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