M8Result

Type Alias M8Result 

Source
pub type M8Result<T> = Result<T, ParseError>;
Expand description

Spefic result type for M8 song parsing

Aliased Type§

pub enum M8Result<T> {
    Ok(T),
    Err(ParseError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ParseError)

Contains the error value