pub type ResultConst<'a, T> = Result<T, ParseErrorConst<'a, EitherError>>;Aliased Type§
pub enum ResultConst<'a, T> {
Ok(T),
Err(ParseErrorConst<'a, EitherError>),
}Variants§
Ok(T)
Contains the success value
Err(ParseErrorConst<'a, EitherError>)
Contains the error value