pub type Result<T> = Result<T, BigIntError>;Expand description
Result type alias for BigInt operations.
This is a convenience type that uses BigIntError as the error type
for all fallible BigInt operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(BigIntError),
}