pub trait MIntConvert<T = <Self as MIntBase>::Inner>: MIntBase {
// Required methods
fn from(x: T) -> <Self as MIntBase>::Inner;
fn into(x: <Self as MIntBase>::Inner) -> T;
fn mod_into() -> T;
}
Required Methods§
fn from(x: T) -> <Self as MIntBase>::Inner
fn into(x: <Self as MIntBase>::Inner) -> T
fn mod_into() -> T
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.