pub struct ConstraintEval {
pub operand: String,
pub passed: bool,
}Expand description
Record of a single constraint’s evaluation.
Fields§
§operand: StringThe left operand (e.g., "purpose").
passed: boolWhether it passed.
Trait Implementations§
Source§impl Clone for ConstraintEval
impl Clone for ConstraintEval
Source§fn clone(&self) -> ConstraintEval
fn clone(&self) -> ConstraintEval
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ConstraintEval
impl RefUnwindSafe for ConstraintEval
impl Send for ConstraintEval
impl Sync for ConstraintEval
impl Unpin for ConstraintEval
impl UnsafeUnpin for ConstraintEval
impl UnwindSafe for ConstraintEval
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