Enum dwarf::ReadError [] [src]

pub enum ReadError {
    Io(Error),
    Utf8(Utf8Error),
    Invalid(String),
    Unsupported(String),
}

Variants

Io(Error)Utf8(Utf8Error)Invalid(String)Unsupported(String)

Trait Implementations

impl Debug for ReadError
[src]

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

Formats the value using the given formatter.

impl From<Error> for ReadError
[src]

fn from(e: Error) -> Self

Performs the conversion.

impl From<Utf8Error> for ReadError
[src]

fn from(e: Utf8Error) -> Self

Performs the conversion.

impl From<Error> for ReadError
[src]

fn from(e: Error) -> Self

Performs the conversion.

impl From<ParseError> for ReadError
[src]

fn from(e: ParseError) -> Self

Performs the conversion.