Trait std::borrow::IntoCowUnstable [-]  [+] [src]

pub trait IntoCow<'a, T, B> {
    fn into_cow(self) -> Cow<'a, T, B>;
}

Trait for moving into a Cow

Required Methods

fn into_cow(self) -> Cow<'a, T, B>

Moves self into Cow

Implementors