pub enum Verdict {
Discharged,
Refuted(String),
Bounded {
widths: Vec<u32>,
why: String,
},
Unknown,
}Expand description
What became of one rule.
Variants§
Discharged
Nothing makes the claim false.
Refuted(String)
Something does, and this is what the solver printed of it.
Bounded
The claim holds at every width narrower than the rule’s own, and the rule carries a written reason for taking that as enough. A pass, and a counted one.
Fields
Unknown
The solver gave up. Not a pass.
Implementations§
Trait Implementations§
impl Eq for Verdict
impl StructuralPartialEq for Verdict
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin for Verdict
impl UnsafeUnpin for Verdict
impl UnwindSafe for Verdict
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