pub trait CloneBound: ToOwned { }
Available on crate feature collections only.
Expand description

Trait alias for either Clone or ToOwned depending on the “alloc” feature, used by the clone_this function

Features

If the "alloc" feature is disabled then this aliases Clone, if it’s enabled then this aliases ToOwned.

Implementors