[][src]Type Definition core_extensions::collection_traits::ClonedOut

type ClonedOut<This> = <This as Cloned>::Cloned;

The type that This is cloned into.

Eg: &u32 is cloned into u32, &str is cloned into String (this example requires the "alloc" feature).