[][src]Struct simon::ParseResult

pub struct ParseResult<I, E> {
    pub usage: Usage,
    pub result: Result<I, TopLevelError<E>>,
}

Fields

usage: Usageresult: Result<I, TopLevelError<E>>

Auto Trait Implementations

impl<I, E> Send for ParseResult<I, E> where
    E: Send,
    I: Send

impl<I, E> Sync for ParseResult<I, E> where
    E: Sync,
    I: Sync

impl<I, E> Unpin for ParseResult<I, E> where
    E: Unpin,
    I: Unpin

impl<I, E> UnwindSafe for ParseResult<I, E> where
    E: UnwindSafe,
    I: UnwindSafe

impl<I, E> RefUnwindSafe for ParseResult<I, E> where
    E: RefUnwindSafe,
    I: RefUnwindSafe

Blanket Implementations

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> 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]