[][src]Trait parse_display::IntoResult

pub trait IntoResult<T> {
    type Err;
    pub fn into_result(self) -> Result<T, Self::Err>;
}

Associated Types

Loading content...

Required methods

pub fn into_result(self) -> Result<T, Self::Err>[src]

Loading content...

Implementations on Foreign Types

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

type Err = ParseError

impl<T, E> IntoResult<T> for Result<T, E>[src]

type Err = E

Loading content...

Implementors

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

type Err = Infallible

Loading content...