pub trait CheckedSub<Rhs = Self>: Sized {
type Output;
// Required method
fn checked_sub(&self, rhs: Rhs) -> CtOption<Self>;
}Expand description
Checked subtraction.
Required Associated Types§
Required Methods§
Sourcefn checked_sub(&self, rhs: Rhs) -> CtOption<Self>
fn checked_sub(&self, rhs: Rhs) -> CtOption<Self>
Perform checked subtraction, returning a CtOption which is_some
only if the operation did not underflow.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".