pub trait ParseOps {
// Required methods
fn unsigned<T: Unsigned>(&self) -> T;
fn signed<T: Signed>(&self) -> T;
fn iter_unsigned<T: Unsigned>(&self) -> impl Iterator<Item = T>;
fn iter_signed<T: Signed>(&self) -> impl Iterator<Item = T>;
}Required Methods§
fn unsigned<T: Unsigned>(&self) -> T
fn signed<T: Signed>(&self) -> T
fn iter_unsigned<T: Unsigned>(&self) -> impl Iterator<Item = T>
fn iter_signed<T: Signed>(&self) -> impl Iterator<Item = T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".