Skip to main content

InfraResult

Type Alias InfraResult 

Source
pub type InfraResult<T> = Result<T, InfraError>;
Expand description

Result type for infrastructure layer operations.

Aliased Type§

pub enum InfraResult<T> {
    Ok(T),
    Err(InfraError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InfraError)

Contains the error value