pub enum Step<Identifier, Int, Label> {
Inference(Inference<Identifier, Int, Label>),
Deduction(Deduction<Identifier, Int>),
Conclusion(Conclusion<Identifier, Int>),
}Expand description
An individual proof step from the proof.
Variants§
Inference(Inference<Identifier, Int, Label>)
Deduction(Deduction<Identifier, Int>)
Conclusion(Conclusion<Identifier, Int>)
Trait Implementations§
Source§impl<Identifier: PartialEq, Int: PartialEq, Label: PartialEq> PartialEq for Step<Identifier, Int, Label>
impl<Identifier: PartialEq, Int: PartialEq, Label: PartialEq> PartialEq for Step<Identifier, Int, Label>
impl<Identifier: Eq, Int: Eq, Label: Eq> Eq for Step<Identifier, Int, Label>
impl<Identifier, Int, Label> StructuralPartialEq for Step<Identifier, Int, Label>
Auto Trait Implementations§
impl<Identifier, Int, Label> Freeze for Step<Identifier, Int, Label>
impl<Identifier, Int, Label> RefUnwindSafe for Step<Identifier, Int, Label>
impl<Identifier, Int, Label> Send for Step<Identifier, Int, Label>
impl<Identifier, Int, Label> Sync for Step<Identifier, Int, Label>
impl<Identifier, Int, Label> Unpin for Step<Identifier, Int, Label>
impl<Identifier, Int, Label> UnwindSafe for Step<Identifier, Int, Label>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.