pub enum ExpressionWithoutBlockInnerBaseError {
Show 23 variants
Operator(ParserError<<OperatorExpression as ParsableRecursive<ExpressionInner>>::Base>),
Index(ParserError<<IndexExpression as ParsableRecursive<ExpressionInner>>::Base>),
Range(ParserError<<RangeExpression as ParsableRecursive<ExpressionInner>>::Base>),
MethodCall(ParserError<<MethodCallExpression as ParsableRecursive<ExpressionInner>>::Base>),
Call(ParserError<<CallExpression as ParsableRecursive<ExpressionInner>>::Base>),
Field(ParserError<<FieldExpression as ParsableRecursive<ExpressionInner>>::Base>),
TupleIndexing(ParserError<<TupleIndexingExpression as ParsableRecursive<ExpressionInner>>::Base>),
Await(ParserError<<AwaitExpression as ParsableRecursive<ExpressionInner>>::Base>),
Closure(ParserError<<ClosureExpression as ParsableRecursive<ExpressionInner>>::Base>),
DoYeet(ParserError<DoYeetExpression>),
Literal(ParserError<LiteralExpression>),
Grouped(ParserError<GroupedExpression>),
MacroInvocation(ParserError<MacroInvocation>),
Tuple(ParserError<TupleExpression>),
Return(ParserError<ReturnExpression>),
Struct(ParserError<StructExpression>),
Array(ParserError<ArrayExpression>),
Path(ParserError<PathExpression>),
Underscore(ParserError<UnderscoreExpression>),
Continue(ParserError<ContinueExpression>),
Break(ParserError<BreakExpression>),
AsyncBlock(ParserError<AsyncBlockExpression>),
Unknown {Show 22 fields
operator_err: ParserError<<OperatorExpression as ParsableRecursive<ExpressionInner>>::Base>,
index_err: ParserError<<IndexExpression as ParsableRecursive<ExpressionInner>>::Base>,
range_err: ParserError<<RangeExpression as ParsableRecursive<ExpressionInner>>::Base>,
method_call_err: ParserError<<MethodCallExpression as ParsableRecursive<ExpressionInner>>::Base>,
call_err: ParserError<<CallExpression as ParsableRecursive<ExpressionInner>>::Base>,
field_err: ParserError<<FieldExpression as ParsableRecursive<ExpressionInner>>::Base>,
tuple_indexing_err: ParserError<<TupleIndexingExpression as ParsableRecursive<ExpressionInner>>::Base>,
await_err: ParserError<<AwaitExpression as ParsableRecursive<ExpressionInner>>::Base>,
closure_err: ParserError<<ClosureExpression as ParsableRecursive<ExpressionInner>>::Base>,
do_yeet_err: ParserError<DoYeetExpression>,
literal_err: ParserError<LiteralExpression>,
grouped_err: ParserError<GroupedExpression>,
macro_invocation_err: ParserError<MacroInvocation>,
tuple_err: ParserError<TupleExpression>,
return_err: ParserError<ReturnExpression>,
struct_err: ParserError<StructExpression>,
array_err: ParserError<ArrayExpression>,
path_err: ParserError<PathExpression>,
underscore_err: ParserError<UnderscoreExpression>,
continue_err: ParserError<ContinueExpression>,
break_err: ParserError<BreakExpression>,
async_block_err: ParserError<AsyncBlockExpression>,
},
}Variants§
Operator(ParserError<<OperatorExpression as ParsableRecursive<ExpressionInner>>::Base>)
Index(ParserError<<IndexExpression as ParsableRecursive<ExpressionInner>>::Base>)
Range(ParserError<<RangeExpression as ParsableRecursive<ExpressionInner>>::Base>)
MethodCall(ParserError<<MethodCallExpression as ParsableRecursive<ExpressionInner>>::Base>)
Call(ParserError<<CallExpression as ParsableRecursive<ExpressionInner>>::Base>)
Field(ParserError<<FieldExpression as ParsableRecursive<ExpressionInner>>::Base>)
TupleIndexing(ParserError<<TupleIndexingExpression as ParsableRecursive<ExpressionInner>>::Base>)
Await(ParserError<<AwaitExpression as ParsableRecursive<ExpressionInner>>::Base>)
Closure(ParserError<<ClosureExpression as ParsableRecursive<ExpressionInner>>::Base>)
DoYeet(ParserError<DoYeetExpression>)
Literal(ParserError<LiteralExpression>)
Grouped(ParserError<GroupedExpression>)
MacroInvocation(ParserError<MacroInvocation>)
Tuple(ParserError<TupleExpression>)
Return(ParserError<ReturnExpression>)
Struct(ParserError<StructExpression>)
Array(ParserError<ArrayExpression>)
Path(ParserError<PathExpression>)
Underscore(ParserError<UnderscoreExpression>)
Continue(ParserError<ContinueExpression>)
Break(ParserError<BreakExpression>)
AsyncBlock(ParserError<AsyncBlockExpression>)
Unknown
Fields
§
operator_err: ParserError<<OperatorExpression as ParsableRecursive<ExpressionInner>>::Base>§
index_err: ParserError<<IndexExpression as ParsableRecursive<ExpressionInner>>::Base>§
range_err: ParserError<<RangeExpression as ParsableRecursive<ExpressionInner>>::Base>§
method_call_err: ParserError<<MethodCallExpression as ParsableRecursive<ExpressionInner>>::Base>§
call_err: ParserError<<CallExpression as ParsableRecursive<ExpressionInner>>::Base>§
field_err: ParserError<<FieldExpression as ParsableRecursive<ExpressionInner>>::Base>§
tuple_indexing_err: ParserError<<TupleIndexingExpression as ParsableRecursive<ExpressionInner>>::Base>§
await_err: ParserError<<AwaitExpression as ParsableRecursive<ExpressionInner>>::Base>§
closure_err: ParserError<<ClosureExpression as ParsableRecursive<ExpressionInner>>::Base>§
do_yeet_err: ParserError<DoYeetExpression>§
literal_err: ParserError<LiteralExpression>§
grouped_err: ParserError<GroupedExpression>§
macro_invocation_err: ParserError<MacroInvocation>§
tuple_err: ParserError<TupleExpression>§
return_err: ParserError<ReturnExpression>§
struct_err: ParserError<StructExpression>§
array_err: ParserError<ArrayExpression>§
path_err: ParserError<PathExpression>§
underscore_err: ParserError<UnderscoreExpression>§
continue_err: ParserError<ContinueExpression>§
break_err: ParserError<BreakExpression>§
async_block_err: ParserError<AsyncBlockExpression>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExpressionWithoutBlockInnerBaseError
impl RefUnwindSafe for ExpressionWithoutBlockInnerBaseError
impl Send for ExpressionWithoutBlockInnerBaseError
impl Sync for ExpressionWithoutBlockInnerBaseError
impl Unpin for ExpressionWithoutBlockInnerBaseError
impl UnsafeUnpin for ExpressionWithoutBlockInnerBaseError
impl UnwindSafe for ExpressionWithoutBlockInnerBaseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<R, T> FromRecursiveRoot<R> for Twhere
T: From<R>,
impl<R, T> FromRecursiveRoot<R> for Twhere
T: From<R>,
fn from_recursive_root(root: R, _parser: &mut Parser) -> T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more