Result

Type Alias Result 

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(BigIntError)

Contains the error value