[][src]Enum pancakestack::parse::BorrowedCommand

pub enum BorrowedCommand<'a> {
    PutThisPancakeOnTop(&'a str),
    EatThePancakeOnTop,
    PutTheTopPancakesTogether,
    GiveMeAPancake,
    HowAboutAHotcake,
    ShowMeAPancake,
    TakeFromTheTopPancakes,
    FlipThePancakesOnTop,
    PutAnotherPancakeOnTop,
    Label(&'a str),
    IfThePancakeIsntTastyGoOverTo(&'a str),
    IfThePancakeIsTastyGoOverTo(&'a str),
    PutSyrupOnThePancakes,
    PutButterOnThePancakes,
    TakeOffTheSyrup,
    TakeOffTheButter,
    EatAllOfThePancakes,
}

An enum representing a pancakestack command. Labels and pancake adjectives are stored in strs . See OwnedCommand for a version that uses Strings.

Variants

PutThisPancakeOnTop(&'a str)
EatThePancakeOnTop
PutTheTopPancakesTogether
GiveMeAPancake
HowAboutAHotcake
ShowMeAPancake
TakeFromTheTopPancakes
FlipThePancakesOnTop
PutAnotherPancakeOnTop
Label(&'a str)
IfThePancakeIsntTastyGoOverTo(&'a str)
IfThePancakeIsTastyGoOverTo(&'a str)
PutSyrupOnThePancakes
PutButterOnThePancakes
TakeOffTheSyrup
TakeOffTheButter
EatAllOfThePancakes

Implementations

impl<'a> BorrowedCommand<'a>[src]

pub fn from_line(line: &'a str) -> Result<Self, ParseCommandError<'a>>[src]

Parses the given line as a pancake stack command. The command will reference the strings contents.

pub fn to_owned(self) -> OwnedCommand[src]

Converts this command into an OwnedCommand heap allocating the referenced strs.

Trait Implementations

impl<'a> Clone for BorrowedCommand<'a>[src]

impl<'a> Debug for BorrowedCommand<'a>[src]

impl<'a> Eq for BorrowedCommand<'a>[src]

impl<'a> PartialEq<BorrowedCommand<'a>> for BorrowedCommand<'a>[src]

impl<'a> StructuralEq for BorrowedCommand<'a>[src]

impl<'a> StructuralPartialEq for BorrowedCommand<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for BorrowedCommand<'a>

impl<'a> Send for BorrowedCommand<'a>

impl<'a> Sync for BorrowedCommand<'a>

impl<'a> Unpin for BorrowedCommand<'a>

impl<'a> UnwindSafe for BorrowedCommand<'a>

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.