pub trait DivVartime: Sized {
// Required method
fn div_vartime(&self, rhs: &NonZero<Self>) -> Self;
}Expand description
Division in variable time.
Required Methods§
Sourcefn div_vartime(&self, rhs: &NonZero<Self>) -> Self
fn div_vartime(&self, rhs: &NonZero<Self>) -> Self
Computes self / rhs in variable time.
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.