This crate provides a smart pointer Owned
, which points to an owned value.
It's similar to Cow
, except that it's always owning its pointee. Moreover, a
trait IntoOwned
is provided, which allows conversion of certain pointers into
an owned value though an .into_owned()
method. The trait IntoOwned
is
implemented for:
&'a T where T: ?Sized + ToOwned
Cow<'a, T> where T: ?Sized + ToOwned
Owned<T>
OwnedRef<T>
(also provided by deref_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>