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

pub trait IntoCow<'a, B> where B: ToOwned, B: ?Sized {
    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