pub enum ReductionRule {
Beta,
Delta,
Iota,
Zeta,
Eta,
Quot,
}Expand description
Kind of reduction rule.
Variants§
Beta
Beta reduction.
Delta
Delta reduction (definition unfolding).
Iota
Iota reduction (recursion / match).
Zeta
Zeta reduction (let unfolding).
Eta
Eta reduction.
Quot
Quotient reduction.
Trait Implementations§
Source§impl Clone for ReductionRule
impl Clone for ReductionRule
Source§fn clone(&self) -> ReductionRule
fn clone(&self) -> ReductionRule
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 ReductionRule
impl Debug for ReductionRule
Source§impl Display for ReductionRule
impl Display for ReductionRule
Source§impl PartialEq for ReductionRule
impl PartialEq for ReductionRule
impl Eq for ReductionRule
impl StructuralPartialEq for ReductionRule
Auto Trait Implementations§
impl Freeze for ReductionRule
impl RefUnwindSafe for ReductionRule
impl Send for ReductionRule
impl Sync for ReductionRule
impl Unpin for ReductionRule
impl UnsafeUnpin for ReductionRule
impl UnwindSafe for ReductionRule
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