CrateResult

Type Alias CrateResult 

Source
pub type CrateResult = Result<()>;
Expand description

Result type returned from the run function.

Aliased Type§

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

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value