pub trait Split: Sized {
type Hi;
type Lo;
// Required methods
fn hi(self) -> Self::Hi;
fn lo(self) -> Self::Lo;
fn lo_hi(self) -> (Self::Lo, Self::Hi);
}
Expand description
Splits an integer into it’s low and high part
Required Associated 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.