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