pub trait CastInto<T: Copy>: Copy {
// Required method
fn cast(self) -> T;
}🔬This is a nightly-only experimental API. (
num_internals)Expand description
Lossy as casting between two types.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".