Skip to main content

CastInto

Trait CastInto 

Source
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§

Source

fn cast(self) -> T

🔬This is a nightly-only experimental API. (num_internals)

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.

Implementors§