Trait collections::borrow::IntoCowStable [-] [+] [src]

pub trait IntoCow<'a, B: ?Sized> where B: ToOwned {
    fn into_cow(self) -> Cow<'a, B>;
}

Trait for moving into a Cow

Required Methods

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

Moves self into Cow

Implementors