Type Alias SystemResult

Source
pub type SystemResult = Result<(), SystemError>;

Aliased Type§

enum SystemResult {
    Ok(()),
    Err(SystemError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(SystemError)

Contains the error value