ark_r1cs_std

Trait Assignment

Source
pub trait Assignment<T> {
    // Required method
    fn get(self) -> Result<T, SynthesisError>;
}
Expand description

A utility trait to convert Self to Result<T, SynthesisErrorA.>

Required Methods§

Source

fn get(self) -> Result<T, SynthesisError>

Converts self to Result.

Implementations on Foreign Types§

Source§

impl<T> Assignment<T> for Option<T>

Implementors§