pub trait ExtraInto<I> {
    // Required method
    fn into_extra(self) -> I;
}
Expand description

Owned trait to implement Into on foreign types

Required Methods§

source

fn into_extra(self) -> I

Implementations on Foreign Types§

source§

impl<F, I> ExtraInto<Option<I>> for Option<F>
where F: Into<I>,

source§

fn into_extra(self) -> Option<I>

source§

impl<F, I> ExtraInto<Vec<I>> for Vec<F>
where F: Into<I>,

source§

fn into_extra(self) -> Vec<I>

source§

impl<KI, VI, KF, VF> ExtraInto<HashMap<KI, VI>> for HashMap<KF, VF>
where KI: Eq + Hash, KF: Into<KI> + Eq + Hash, VF: Into<VI>,

source§

fn into_extra(self) -> HashMap<KI, VI>

Implementors§