ParseElfResult

Type Alias ParseElfResult 

Source
pub type ParseElfResult<T> = Result<T, ParseElfError>;
Expand description

The result type for Elfy, wraps a ParseElfError

Aliased Type§

pub enum ParseElfResult<T> {
    Ok(T),
    Err(ParseElfError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ParseElfError)

Contains the error value