Type Alias EmptyResult

Source
pub type EmptyResult = Result<()>;
Expand description

This type is used to handle all the different errors on Phink. It’s a simple binding to anyhow.

Aliased Type§

pub enum EmptyResult {
    Ok(()),
    Err(Error),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value