pub trait DivAssignUnsafe<Rhs = Self>: Sized {
// Required method
fn div_assign_unsafe(&mut self, other: Rhs);
}
Expand description
Division assignment operation that is undefined behavior when the denominator is not invertible.
Required Methods§
Sourcefn div_assign_unsafe(&mut self, other: Rhs)
fn div_assign_unsafe(&mut self, other: Rhs)
Undefined behavior when denominator is not invertible.
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.