pub trait GenericCow<B>: Sized + Borrow<B> where
    B: ?Sized + ToOwned
{ fn into_owned(self) -> <B as ToOwned>::Owned; }
Expand description

Types which implement Borrow<B> and can be converted into <B as ToOwned>::Owned

Required Methods

Convert into owned type

Implementations on Foreign Types

Implementors