Trait std::borrow::IntoCow [] [src]

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

: may be replaced by convert::Into

Trait for moving into a Cow.

Required Methods

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

Unstable (into_cow #27735)

: may be replaced by convert::Into

Moves self into Cow

Implementors