pub struct FheStats {
pub encryptions: u64,
pub decryptions: u64,
pub additions: u64,
pub multiplications: u64,
pub rotations: u64,
pub bootstraps: u64,
pub failures: u64,
}Expand description
Statistics for FHE operations
Fields§
§encryptions: u64Encryptions performed
decryptions: u64Decryptions performed
additions: u64Homomorphic additions
multiplications: u64Homomorphic multiplications
rotations: u64Rotations performed
bootstraps: u64Bootstrapping operations
failures: u64Failed operations (noise exhausted)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FheStats
impl RefUnwindSafe for FheStats
impl Send for FheStats
impl Sync for FheStats
impl Unpin for FheStats
impl UnwindSafe for FheStats
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