Enum python_ast::ParserResult [] [src]

pub enum ParserResult {
    Ok(ParsedAst),
    Error(ParsedAst),
}

The result type returned by Parser. Both Ok and Error variants contain an instance of ParsedAst. Ok variants are considered to be the case where the TkSlice was fully consumed.

Variants

Trait Implementations

impl Debug for ParserResult
[src]

Formats the value using the given formatter.

impl Clone for ParserResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more