pub trait Polar:
Sized
+ One
+ Add<Output = Self>
+ Mul<Output = Self>
+ Sub<Output = Self> {
// Provided method
fn polar(self) -> Self { ... }
}Expand description
Types that can represent a polar value.
Provided Methods§
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.