EmptyResult

Type Alias EmptyResult 

Source
pub type EmptyResult = Result<()>;

Aliased Type§

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