pub type ParseResult<T, E> = Result<T, ParseError<E>>;Expand description
A specialized Result type for parsing shell commands.
Aliased Type§
pub enum ParseResult<T, E> {
Ok(T),
Err(ParseError<E>),
}pub type ParseResult<T, E> = Result<T, ParseError<E>>;A specialized Result type for parsing shell commands.
pub enum ParseResult<T, E> {
Ok(T),
Err(ParseError<E>),
}