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

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

Required Methods§

Converts self to Result.

Implementations on Foreign Types§

Implementors§