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:
&'a B where B: ToOwned
Cow<'a, B> where B: ToOwned
Owned<'a, B, O> where O: Borrow<B>
Here
B: ?Sized
is the borrowed type and
andO: Borrow<B>
is an owned type.Deref
as supertrait of GenericCow
and added type argument to
GenericCow
insteadOwned::borrowed
to be
PhantomData<for<'a> fn(&'a O) -> &'a B>
instead of using
PhantomData<*const B>
, which broke correct autotrait behaviorOwned
Owned
, which now contains a PhantomData
of a reference to the
borrowed type. This makes OwnedRef
superfluous, which has been removed.IntoOwned
has been renamed to GenericCow
.AsMut
, BorrowMut
and DerefMut
implementations for Owned
IntoOwned
for Box<T>
, Vec<T>
, and
String
OwnedRef<T>
IntoOwned
for Box<T>
(where T: ?Sized
),
Vec<T>
, and String
, with IntoOwned::Owned
being set to Self
(replaces previous implementation for Box<T>
)AsRef
, AsMut
, Borrow
, BorrowMut
,
and Display
) have been added for Owned
(and Debug::fmt
's output is transparent now)Deref
is now a supertrait of IntoOwned
and IntoOwned::Owned
must
implement Borrow<<Self as Deref>::Target>