pub trait CastInto<T: Copy>: Copy {
// Required method
fn cast(self) -> T;
}
🔬This is a nightly-only experimental API. (
dec2flt
)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", so this trait is not object safe.