SResult

Type Alias SResult 

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

The serialize result of a combinator.

Aliased Type§

pub enum SResult<T, E> {
    Ok(T),
    Err(E),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(E)

Contains the error value