Trait MapInto

Source
pub trait MapInto<T, E> {
    // Required method
    fn map_into(self) -> Result<T, E>;
}

Required Methods§

Source

fn map_into(self) -> Result<T, E>

Implementations on Foreign Types§

Source§

impl<OkFrom, ErrFrom, OkInto, ErrInto> MapInto<OkInto, ErrInto> for Result<OkFrom, ErrFrom>
where OkFrom: Into<OkInto>, ErrFrom: Into<ErrInto>,

Source§

fn map_into(self) -> Result<OkInto, ErrInto>

Implementors§