[][src]Enum libslide::evaluator_rules::registry::RuleName

pub enum RuleName {
    UnwrapExplicitParens,
    UnwrapExplicitBrackets,
    Add,
    Subtract,
    Multiply,
    Divide,
    Modulo,
    Exponentiate,
    Posate,
    Negate,
    MultiplicateIdentity,
    AdditiveIdentity,
    AdditiveInverse,
    SubtractiveIdentity,
    ReorderConstants,
    DistributeNegation,
    FoldNegatedAddition,
    FoldDivision,
    FoldExponents,
    ExponentiativeIdentity,
}

Variants

UnwrapExplicitParens
UnwrapExplicitBrackets
Add
Subtract
Multiply
Divide
Modulo
Exponentiate
Posate
Negate
MultiplicateIdentity
AdditiveIdentity
AdditiveInverse
SubtractiveIdentity
ReorderConstants
DistributeNegation
FoldNegatedAddition
FoldDivision
FoldExponents
ExponentiativeIdentity

Trait Implementations

impl Clone for RuleName[src]

impl Copy for RuleName[src]

impl Debug for RuleName[src]

impl Eq for RuleName[src]

impl Hash for RuleName[src]

impl Ord for RuleName[src]

impl PartialEq<RuleName> for RuleName[src]

impl PartialOrd<RuleName> for RuleName[src]

impl StructuralEq for RuleName[src]

impl StructuralPartialEq for RuleName[src]

Auto Trait Implementations

impl RefUnwindSafe for RuleName

impl Send for RuleName

impl Sync for RuleName

impl Unpin for RuleName

impl UnwindSafe for RuleName

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.