trait ReadNumberHelper: Sized {
const ZERO: Self;
// Required methods
fn checked_mul(&self, other: u32) -> Option<Self>;
fn checked_add(&self, other: u32) -> Option<Self>;
}
Required Associated Constants§
Required Methods§
fn checked_mul(&self, other: u32) -> Option<Self>
fn checked_add(&self, other: u32) -> Option<Self>
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.