Skip to main content

SatResult

Type Alias SatResult 

Source
pub type SatResult<T> = Result<T, SatError>;
Expand description

Result type for SAT operations

Aliased Type§

pub enum SatResult<T> {
    Ok(T),
    Err(SatError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SatError)

Contains the error value