Type Alias EffectResult

Source
pub type EffectResult = Result<Box<dyn Any + Send>, Box<dyn Error + Send>>;

Aliased Type§

pub enum EffectResult {
    Ok(Box<dyn Any + Send>),
    Err(Box<dyn Error + Send>),
}

Variants§

§1.0.0

Ok(Box<dyn Any + Send>)

Contains the success value

§1.0.0

Err(Box<dyn Error + Send>)

Contains the error value