[][src]Struct spirit::utils::MissingEquals

pub struct MissingEquals;

An error returned when the user passes a key-value option without the equal sign.

Some internal options take a key-value pairs on the command line. If such option is expected, but it doesn't contain the equal sign, this is the used error.

Trait Implementations

impl Clone for MissingEquals[src]

impl Copy for MissingEquals[src]

impl Debug for MissingEquals[src]

impl Display for MissingEquals[src]

impl Error for MissingEquals[src]

Auto Trait Implementations

impl RefUnwindSafe for MissingEquals

impl Send for MissingEquals

impl Sync for MissingEquals

impl Unpin for MissingEquals

impl UnwindSafe for MissingEquals

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<E> ErrorExt for E where
    E: Error
[src]

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.