pub trait Two<F> {
// Required methods
fn two() -> F;
fn two_pow(pow: u64) -> F;
}
Expand description
Helper to obtain two
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.