pub trait Fp {
// Required methods
fn pow(&self, rhs: usize) -> Self;
fn powi(&self, rhs: isize) -> Self;
fn inv(&self) -> Self;
}Required Methods§
fn pow(&self, rhs: usize) -> Self
fn powi(&self, rhs: isize) -> Self
fn inv(&self) -> Self
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.