[][src]Enum ashpaper::program::Rule

pub enum Rule {
    EOI,
    program,
    instruction,
    register1,
    register0,
    goto,
    negate,
    multiply,
    add,
    print_char,
    print_value,
    pop,
    push,
    noop,
    store_syllables,
    forward_slash,
    any_not_forward_slash,
    caps_in_word,
    any_not_caps_in_word,
    title_case,
    any_not_title_case,
    like_all,
    like1_full,
    like2_full,
    like3_full,
    like4_full,
    like1,
    like2,
    like3,
    like4,
    any_not_like1,
    any_not_like2,
    any_not_like3,
    as_all,
    as1_full,
    as2_full,
    as3_full,
    as4_full,
    as1,
    as2,
    as3,
    as4,
    any_not_as1,
    any_not_as2,
    any_not_as3,
    punctuation_or_ws,
    question,
    any_not_question,
    dot,
    any_not_dot,
    comma,
    any_not_comma,
    hyphen,
    any_not_hyphen,
    start,
    end,
    character,
    any_not_character,
    uppercase_letter,
    whitespace,
    any,
}

Variants

EOI
program
instruction
register1
register0
goto
negate
multiply
add
print_char
print_value
pop
push
noop
store_syllables
forward_slash
any_not_forward_slash
caps_in_word
any_not_caps_in_word
title_case
any_not_title_case
like_all
like1_full
like2_full
like3_full
like4_full
like1
like2
like3
like4
any_not_like1
any_not_like2
any_not_like3
as_all
as1_full
as2_full
as3_full
as4_full
as1
as2
as3
as4
any_not_as1
any_not_as2
any_not_as3
punctuation_or_ws
question
any_not_question
dot
any_not_dot
comma
any_not_comma
hyphen
any_not_hyphen
start
end
character
any_not_character
uppercase_letter
whitespace
any

Trait Implementations

impl Clone for Rule[src]

impl Copy for Rule[src]

impl Eq for Rule[src]

impl Ord for Rule[src]

impl PartialEq<Rule> for Rule[src]

impl PartialOrd<Rule> for Rule[src]

impl Debug for Rule[src]

impl Hash for Rule[src]

impl Parser<Rule> for AshPaper[src]

Auto Trait Implementations

impl Send for Rule

impl Sync for Rule

impl Unpin for Rule

impl UnwindSafe for Rule

impl RefUnwindSafe for Rule

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> RuleType for T where
    T: Copy + Eq + Ord + Hash + Debug
[src]