trait OverflowOp: Sized {
// Required methods
fn mul(self, other: Self) -> Result<Self, Error>;
fn add(self, other: Self) -> Result<Self, Error>;
}
Required Methods§
fn mul(self, other: Self) -> Result<Self, Error>
fn add(self, other: Self) -> Result<Self, Error>
Object Safety§
This trait is not object safe.