Enum serialize::hex::FromHexError[src]

pub enum FromHexError {
    InvalidHexCharacter(char, uint),
    InvalidHexLength,
}

Errors that can occur when decoding a hex encoded string

Variants

InvalidHexCharacter

The input contained a character not part of the hex format

InvalidHexLength

The input had an invalid length

Trait Implementations

impl Show for FromHexError

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