pub trait Trigo {
// Required methods
fn pi() -> Self;
fn cos(self) -> Self;
}
Expand description
Types with a sane definition of π and cosine.
Required 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.