Skip to main content

AnyEmptyResult

Type Alias AnyEmptyResult 

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

Aliased Type§

pub enum AnyEmptyResult {
    Ok(()),
    Err(Box<dyn Error>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Box<dyn Error>)

Contains the error value