pub trait Claim: Clone { }
Expand description
A marker trait for infallible cloneable objects. Only implement this for your type if you can guarantee that cloning it is guaranteed not to panic.
For details on the idea, read the Claiming, auto and otherwise blog post.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.