Type Alias blaze_devkit::ExecutorResult

source ·
pub type ExecutorResult = Result<(), Box<dyn Error + Send + Sync>>;

Aliased Type§

enum ExecutorResult {
    Ok(()),
    Err(Box<dyn Error + Sync + Send>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Box<dyn Error + Sync + Send>)

Contains the error value