Skip to main content

Result

Type Alias Result 

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

The primary result type for SimdSieve construction.

This is a type alias for Result<T, SimdSieveError>, used as the return type for all fallible construction functions.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(SimdSieveError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SimdSieveError)

Contains the error value