pub trait Polynomial<C>: Clone {
const DEGREE_BOUND: usize;
}Expand description
Polynomial with coefficients of type C and degree bounded by
DEGREE_BOUND.
Required Associated Constants§
const DEGREE_BOUND: usize
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.