pub trait DivUnchecked<R>where
Self: Sealed,
R: Sealed,{
type Output;
// Required method
unsafe fn div_unchecked(self, rhs: R) -> Self::Output;
}
Required Associated Types§
Required Methods§
Sourceunsafe fn div_unchecked(self, rhs: R) -> Self::Output
unsafe fn div_unchecked(self, rhs: R) -> Self::Output
§Safety
TODO (also remove me from here (definition) and write it in the macro invocation)
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.