pub trait SaturatingSub:
RudaPrimitive
+ RudaType<ExpandType: SaturatingSubExpand>
+ Sized {
// Provided methods
fn saturating_sub(self, _rhs: Self) -> Self { ... }
fn __expand_saturating_sub(
scope: &mut Scope,
lhs: NativeExpand<Self>,
rhs: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
}Provided Methods§
fn saturating_sub(self, _rhs: Self) -> Self
fn __expand_saturating_sub( scope: &mut Scope, lhs: NativeExpand<Self>, rhs: NativeExpand<Self>, ) -> NativeExpand<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".