deref_owned

This crate provides a smart pointer Owned, which points to a value that can be borrowed from an owned inner value. It's similar to Cow, except that it's always owning a value.

Moreover, a trait GenericCow<B: ?Sized> is provided, which allows conversion from certain types which implement Borrow<B> into an owned value though an .into_owned(). The trait GenericCow<B: ?Sized> is implemented for:

Here

Changelog