IntoVecF

Trait IntoVecF 

Source
pub trait IntoVecF<F: Field> {
    // Required method
    fn into_vec_f(self) -> Vec<F>;
}
Expand description

Simple trait which allows for ease of converting e.g. a Vec<u64> into a Vec<F>.

Required Methods§

Source

fn into_vec_f(self) -> Vec<F>

Implementations on Foreign Types§

Source§

impl<F, T> IntoVecF<F> for Vec<T>
where F: From<T> + Field,

Source§

fn into_vec_f(self) -> Vec<F>

Implementors§