pub type CloneType<This> = <This as ToOwned>::Owned;
Available on crate feature collections only.
Expand description

The type that This is cloned into when using either Clone or ToOwned.

Features

If the "alloc" feature is disabled then this aliases This, if it’s enabled then this aliases <This as ToOwned>::Owned.