pub struct MetatheoremResult {
pub name: String,
pub ok: bool,
pub checks: Vec<MetatheoremCheck>,
}Expand description
Per-relation (or per-definition) outcome — combines every sub-check run for that name.
Fields§
§name: String§ok: bool§checks: Vec<MetatheoremCheck>Trait Implementations§
Source§impl Clone for MetatheoremResult
impl Clone for MetatheoremResult
Source§fn clone(&self) -> MetatheoremResult
fn clone(&self) -> MetatheoremResult
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 MetatheoremResult
impl Debug for MetatheoremResult
Source§impl PartialEq for MetatheoremResult
impl PartialEq for MetatheoremResult
impl Eq for MetatheoremResult
impl StructuralPartialEq for MetatheoremResult
Auto Trait Implementations§
impl Freeze for MetatheoremResult
impl RefUnwindSafe for MetatheoremResult
impl Send for MetatheoremResult
impl Sync for MetatheoremResult
impl Unpin for MetatheoremResult
impl UnsafeUnpin for MetatheoremResult
impl UnwindSafe for MetatheoremResult
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