Skip to main content

ResultConst

Type Alias ResultConst 

Source
pub type ResultConst<'a, T> = Result<T, ParseErrorConst<'a, EitherError>>;

Aliased Type§

pub enum ResultConst<'a, T> {
    Ok(T),
    Err(ParseErrorConst<'a, EitherError>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ParseErrorConst<'a, EitherError>)

Contains the error value