Skip to main content

ExtResult

Type Alias ExtResult 

Source
pub type ExtResult<T> = Result<T, Box<dyn Error + Send + Sync>>;
Expand description

Result type used across all extensions.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

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

Contains the error value