Type Alias HandlerResult

Source
pub type HandlerResult = Result<(), Error>;
Expand description

Result type returned when parsing an mp4 file.

Aliased Type§

pub enum HandlerResult {
    Ok(()),
    Err(Error),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value