pub trait IntoCoefficientEmbedding<T> {
// Required method
fn into_coefficient_embedding(self, size: impl Into<i64>) -> T;
}Expand description
Is implemented by polynomials to receive a matrix representation of their coefficients.
Required Methods§
Sourcefn into_coefficient_embedding(self, size: impl Into<i64>) -> T
fn into_coefficient_embedding(self, size: impl Into<i64>) -> T
Returns a canonical coefficient embedding of the value, e.g. a matrix representation of the coefficients of a polynomial.
Parameters:
size: determines the length of the object in which the coefficients are embedded, e.g. length of the vector
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.