Type Definition atoms::ParseResult [] [src]

type ParseResult<T> = Result<T, ParseError>;

The result of parsing an s-expression.

If something goes wrong, the error should be a ParseError, otherwise it's a successful parsing of the s-expression fragment.