pub type TryParseResult<GreenElement> = Result<GreenElement, TryParseFailure>;Expand description
The result of a try_parse_* functions.
Aliased Type§
pub enum TryParseResult<GreenElement> {
Ok(GreenElement),
Err(TryParseFailure),
}pub type TryParseResult<GreenElement> = Result<GreenElement, TryParseFailure>;The result of a try_parse_* functions.
pub enum TryParseResult<GreenElement> {
Ok(GreenElement),
Err(TryParseFailure),
}