ShutdownResult

Type Alias ShutdownResult 

Source
pub type ShutdownResult<T> = Result<T, ShutdownError>;
Expand description

Result type for shutdown operations.

Aliased Type§

pub enum ShutdownResult<T> {
    Ok(T),
    Err(ShutdownError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ShutdownError)

Contains the error value