Trait parse_display::IntoResult[][src]

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

Associated Types

Required methods

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

Implementations on Foreign Types

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

type Err = ParseError

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

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

type Err = E

fn into_result(self) -> Result<T, E>[src]

Implementors

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

type Err = Infallible

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