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>
Object Safety§
This trait is not object safe.