pub enum VerificationLevel {
Exact,
Statistical,
Trend,
Skipped,
}Expand description
How rigorously the verification was performed.
Variants§
Exact
Bitwise match (Clifford circuits: stabilizer vs state vector).
Statistical
Chi-squared test within tolerance.
Trend
Correlation of energy landscape.
Skipped
Verification not applicable.
Trait Implementations§
Source§impl Clone for VerificationLevel
impl Clone for VerificationLevel
Source§fn clone(&self) -> VerificationLevel
fn clone(&self) -> VerificationLevel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VerificationLevel
impl Debug for VerificationLevel
Source§impl PartialEq for VerificationLevel
impl PartialEq for VerificationLevel
impl Copy for VerificationLevel
impl Eq for VerificationLevel
impl StructuralPartialEq for VerificationLevel
Auto Trait Implementations§
impl Freeze for VerificationLevel
impl RefUnwindSafe for VerificationLevel
impl Send for VerificationLevel
impl Sync for VerificationLevel
impl Unpin for VerificationLevel
impl UnsafeUnpin for VerificationLevel
impl UnwindSafe for VerificationLevel
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