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),
}