[][src]Enum go_flag::WarningMode

pub enum WarningMode {
    Ignore,
    Report,
    Error,
}

How parse_with_warnings treats compatibility warnings.

Variants

Ignore

Throw warnings away.

Report

Report warnings to stderr and continue processing.

Error

Report warnings to stderr and abort the program.

Trait Implementations

impl Eq for WarningMode[src]

impl Clone for WarningMode[src]

impl PartialOrd<WarningMode> for WarningMode[src]

impl PartialEq<WarningMode> for WarningMode[src]

impl Ord for WarningMode[src]

impl Copy for WarningMode[src]

impl Hash for WarningMode[src]

impl Debug for WarningMode[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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

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