BuildResult

Type Alias BuildResult 

Source
pub type BuildResult = Result<(), Box<AnyError>>;

Aliased Type§

pub enum BuildResult {
    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