[][src]Trait mapinto::ResultMapInto

pub trait ResultMapInto<U> {
    type Output;
    fn map_into(self) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

fn map_into(self) -> Self::Output

Loading content...

Implementations on Foreign Types

impl<T, E, U: From<T>> ResultMapInto<U> for Result<T, E>[src]

type Output = Result<U, E>

Loading content...

Implementors

Loading content...