Skip to main content

ServiceRuntimeResult

Type Alias ServiceRuntimeResult 

Source
pub type ServiceRuntimeResult<T> = Result<T, ServiceRuntimeError>;

Aliased Type§

pub enum ServiceRuntimeResult<T> {
    Ok(T),
    Err(ServiceRuntimeError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ServiceRuntimeError)

Contains the error value