Enum num::bigint::ParseBigIntError []

pub enum ParseBigIntError {
    ParseInt(ParseIntError),
    Other,
}

Variants

ParseInt(ParseIntError)Other

Trait Implementations

impl PartialEq<ParseBigIntError> for ParseBigIntError

fn eq(&self, __arg_0: &ParseBigIntError) -> bool

fn ne(&self, __arg_0: &ParseBigIntError) -> bool

impl Debug for ParseBigIntError

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

impl Display for ParseBigIntError

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

impl Error for ParseBigIntError

fn description(&self) -> &str

impl From<ParseIntError> for ParseBigIntError