Skip to main content

S2Result

Type Alias S2Result 

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

Specialized result type for .s2 parsing.

Aliased Type§

pub enum S2Result<T> {
    Ok(T),
    Err(S2Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(S2Error)

Contains the error value