pub type ParseResult<T> = Result<T, ParseError>;
Expand description
Type alias for the result of parsing to a MacroStream
.
Aliased Type§
enum ParseResult<T> {
Ok(T),
Err(ParseError),
}
pub type ParseResult<T> = Result<T, ParseError>;
Type alias for the result of parsing to a MacroStream
.
enum ParseResult<T> {
Ok(T),
Err(ParseError),
}