pub trait Field: Ring {
// Required method
fn div(self, other: Self) -> GeopResult<Self>;
}Required Methods§
fn div(self, other: Self) -> GeopResult<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".