Enum num_bigint::ParseBigIntError
[−]
[src]
pub enum ParseBigIntError {
ParseInt(ParseIntError),
Other,
}Variants
ParseInt(ParseIntError)OtherTrait Implementations
impl PartialEq for ParseBigIntError[src]
fn eq(&self, __arg_0: &ParseBigIntError) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ParseBigIntError) -> bool
This method tests for !=.
impl Debug for ParseBigIntError[src]
impl Display for ParseBigIntError[src]
impl Error for ParseBigIntError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0
The lower-level cause of this error, if any.
impl From<ParseIntError> for ParseBigIntError[src]
fn from(err: ParseIntError) -> ParseBigIntError
Performs the conversion.