pub type Result<T, E = SynthesisError> = Result<T, E>;Expand description
Result type which may produce SynthesisError.
Aliased Type§
pub enum Result<T, E = SynthesisError> {
Ok(T),
Err(E),
}pub type Result<T, E = SynthesisError> = Result<T, E>;Result type which may produce SynthesisError.
pub enum Result<T, E = SynthesisError> {
Ok(T),
Err(E),
}