Type Alias ixdtf::ParserResult
source · pub type ParserResult<T> = Result<T, ParseError>;
Expand description
The ixdtf
crate’s Result type.
Aliased Type§
enum ParserResult<T> {
Ok(T),
Err(ParseError),
}
pub type ParserResult<T> = Result<T, ParseError>;
The ixdtf
crate’s Result type.
enum ParserResult<T> {
Ok(T),
Err(ParseError),
}