pub struct IgnoredInference<Atomic> {
pub inference: SupportingInference<Atomic>,
pub unsatisfied_premises: Vec<Atomic>,
}Expand description
An inference that was ignored when checking a deduction.
Returned as an error when checking a deduction. These inferences were added to the proof stage, but never used. Hence, they likely point to why the proof stage is rejected.
Fields§
§inference: SupportingInference<Atomic>The inference that was ignored.
unsatisfied_premises: Vec<Atomic>The premises that were not satisfied when the inference was evaluated.
Trait Implementations§
Source§impl<Atomic: Clone> Clone for IgnoredInference<Atomic>
impl<Atomic: Clone> Clone for IgnoredInference<Atomic>
Source§fn clone(&self) -> IgnoredInference<Atomic>
fn clone(&self) -> IgnoredInference<Atomic>
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 moreSource§impl<Atomic: Debug> Debug for IgnoredInference<Atomic>
impl<Atomic: Debug> Debug for IgnoredInference<Atomic>
impl<Atomic: Eq> Eq for IgnoredInference<Atomic>
Source§impl<Atomic: PartialEq> PartialEq for IgnoredInference<Atomic>
impl<Atomic: PartialEq> PartialEq for IgnoredInference<Atomic>
impl<Atomic: PartialEq> StructuralPartialEq for IgnoredInference<Atomic>
Auto Trait Implementations§
impl<Atomic> Freeze for IgnoredInference<Atomic>where
Atomic: Freeze,
impl<Atomic> RefUnwindSafe for IgnoredInference<Atomic>where
Atomic: RefUnwindSafe,
impl<Atomic> Send for IgnoredInference<Atomic>where
Atomic: Send,
impl<Atomic> Sync for IgnoredInference<Atomic>where
Atomic: Sync,
impl<Atomic> Unpin for IgnoredInference<Atomic>where
Atomic: Unpin,
impl<Atomic> UnsafeUnpin for IgnoredInference<Atomic>where
Atomic: UnsafeUnpin,
impl<Atomic> UnwindSafe for IgnoredInference<Atomic>where
Atomic: UnwindSafe,
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