FromCoefficientEmbedding

Trait FromCoefficientEmbedding 

Source
pub trait FromCoefficientEmbedding<T> {
    // Required method
    fn from_coefficient_embedding(embedding: T) -> Self;
}
Expand description

Is implemented by polynomials to reverse the coefficient embedding.

Required Methods§

Source

fn from_coefficient_embedding(embedding: T) -> Self

Reverses the coefficient embedding, e.g. takes as input a vector and returns a polynomial.

Parameters:

  • embedding: the coefficient embedding

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.

Implementors§