pub struct CertificationBenchmark {
pub circuits_tested: usize,
pub certified: usize,
pub certification_rate: f64,
pub max_tvd: f64,
pub avg_tvd: f64,
pub tvd_bound: f64,
}Expand description
Results from the cross-backend certification benchmark.
Fields§
§circuits_tested: usize§certified: usize§certification_rate: f64§max_tvd: f64§avg_tvd: f64§tvd_bound: f64Auto Trait Implementations§
impl Freeze for CertificationBenchmark
impl RefUnwindSafe for CertificationBenchmark
impl Send for CertificationBenchmark
impl Sync for CertificationBenchmark
impl Unpin for CertificationBenchmark
impl UnsafeUnpin for CertificationBenchmark
impl UnwindSafe for CertificationBenchmark
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