pub enum CheckItem {
Whole,
Index(usize),
Pair(usize, usize),
}Expand description
What one Check examined: the identifier the decision form is generic over.
A pair of graph nodes, an eigenvalue index, and a single whole-operator residual all fit one record, which is what lets a pipeline fold reports from different checks.
Variants§
Whole
One quantity over the whole operator, such as a Hermiticity defect or a trace defect.
Index(usize)
An indexed item, such as an eigenvalue or a generator.
Pair(usize, usize)
A pair, such as two graph nodes or two hypotheses.
Trait Implementations§
impl Copy for CheckItem
impl Eq for CheckItem
impl StructuralPartialEq for CheckItem
Auto Trait Implementations§
impl Freeze for CheckItem
impl RefUnwindSafe for CheckItem
impl Send for CheckItem
impl Sync for CheckItem
impl Unpin for CheckItem
impl UnsafeUnpin for CheckItem
impl UnwindSafe for CheckItem
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