Skip to main content

JobResult

Type Alias JobResult 

Source
pub type JobResult = Result<String, Box<dyn Error + Send + Sync>>;

Aliased Type§

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

Variants§

§1.0.0

Ok(String)

Contains the success value

§1.0.0

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

Contains the error value