[][src]Enum corewars::parser::Warning

pub enum Warning {
    OriginRedefinition {
        old: String,
        new: String,
    },
    EmptySubstitution(String),
    EmptyOffset(String),
}

A warning that occurred while parsing a warrior.

Variants

OriginRedefinition

Attempt to define the warrior origin more than once.

Fields of OriginRedefinition

old: Stringnew: String
EmptySubstitution(String)

Empty EQU substitution.

EmptyOffset(String)

Offset label declaration with no instruction.

Trait Implementations

impl Debug for Warning[src]

impl Display for Warning[src]

impl Error for Warning[src]

impl PartialEq<Warning> for Warning[src]

impl StructuralPartialEq for Warning[src]

Auto Trait Implementations

impl RefUnwindSafe for Warning

impl Send for Warning

impl Sync for Warning

impl Unpin for Warning

impl UnwindSafe for Warning

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> ToString for T where
    T: Display + ?Sized
[src]

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.