pub trait ForceInto<T> {
type Warning;
// Required method
fn force_into(self) -> Warned<T, Self::Warning>;
}Expand description
Convert T into Warned<T, Warning>
pub trait ForceInto<T> {
type Warning;
// Required method
fn force_into(self) -> Warned<T, Self::Warning>;
}Convert T into Warned<T, Warning>