pub trait Assignment<T> {
// Required methods
fn get(&self) -> Result<&T, SynthesisError>;
fn grab(self) -> Result<T, SynthesisError>;
}
pub trait Assignment<T> {
// Required methods
fn get(&self) -> Result<&T, SynthesisError>;
fn grab(self) -> Result<T, SynthesisError>;
}