pub trait ToElements<E>
where E: FieldElement,
{ // Required method fn to_elements(&self) -> Vec<E>; }
Expand description

Defines how to convert a struct to a vector of field elements.

Required Methods§

source

fn to_elements(&self) -> Vec<E>

Implementations on Foreign Types§

source§

impl<E> ToElements<E> for ()
where E: FieldElement,

source§

fn to_elements(&self) -> Vec<E>

Implementors§