pub trait UncheckedInto<T> {
// Required method
fn unchecked_into(self) -> T;
}Expand description
The counterpart to UncheckedFrom.
Required Methods§
Sourcefn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to unchecked_from.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".