Enum elf::ParseError [] [src]

pub enum ParseError {
    IoError(Error),
    InvalidMagic,
    InvalidFormat(Option<FromUtf8Error>),
    NotImplemented,
}

Variants

IoError(Error)InvalidMagicInvalidFormat(Option<FromUtf8Error>)NotImplemented

Trait Implementations

impl Debug for ParseError
[src]

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

Formats the value using the given formatter.

impl From<Error> for ParseError
[src]

fn from(e: Error) -> Self

Performs the conversion.

impl From<FromUtf8Error> for ParseError
[src]

fn from(e: FromUtf8Error) -> Self

Performs the conversion.