Type Alias ServerAppResult

Source
pub type ServerAppResult<T> = Result<T, ServerAppError>;
Expand description

The result type returned by server app methods.

Aliased Type§

pub enum ServerAppResult<T> {
    Ok(T),
    Err(ServerAppError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ServerAppError)

Contains the error value