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§
Sourcefn get(self) -> Result<T, SynthesisError>
fn get(self) -> Result<T, SynthesisError>
Converts self
to Result
.