struct IllegalBinderVisitor<'a, 'genv, 'tcx> {
scopes: Vec<ScopeKind>,
resolver: &'a CrateResolver<'genv, 'tcx>,
errors: Errors<'genv>,
}
Fields§
§scopes: Vec<ScopeKind>
§resolver: &'a CrateResolver<'genv, 'tcx>
§errors: Errors<'genv>
Implementations§
Source§impl<'a, 'genv, 'tcx> IllegalBinderVisitor<'a, 'genv, 'tcx>
impl<'a, 'genv, 'tcx> IllegalBinderVisitor<'a, 'genv, 'tcx>
fn new(resolver: &'a mut CrateResolver<'genv, 'tcx>) -> Self
fn run( self, f: impl FnOnce(&mut ScopedVisitorWrapper<Self>), ) -> Result<(), ErrorGuaranteed>
Trait Implementations§
Source§impl ScopedVisitor for IllegalBinderVisitor<'_, '_, '_>
impl ScopedVisitor for IllegalBinderVisitor<'_, '_, '_>
fn is_box(&self, segment: &PathSegment) -> bool
fn enter_scope(&mut self, kind: ScopeKind) -> ControlFlow<()>
fn exit_scope(&mut self)
fn on_implicit_param(&mut self, ident: Ident, param_kind: ParamKind, _: NodeId)
fn wrap(self) -> ScopedVisitorWrapper<Self>
fn on_generic_param(&mut self, _param: &GenericParam)
fn on_refine_param(&mut self, _param: &RefineParam)
fn on_enum_variant(&mut self, _variant: &VariantDef)
fn on_fn_sig(&mut self, _fn_sig: &FnSig)
fn on_fn_output(&mut self, _output: &FnOutput)
fn on_loc(&mut self, _loc: Ident, _node_id: NodeId)
fn on_path(&mut self, _path: &ExprPath)
fn on_base_sort(&mut self, _sort: &BaseSort)
Auto Trait Implementations§
impl<'a, 'genv, 'tcx> !Freeze for IllegalBinderVisitor<'a, 'genv, 'tcx>
impl<'a, 'genv, 'tcx> !RefUnwindSafe for IllegalBinderVisitor<'a, 'genv, 'tcx>
impl<'a, 'genv, 'tcx> !Send for IllegalBinderVisitor<'a, 'genv, 'tcx>
impl<'a, 'genv, 'tcx> !Sync for IllegalBinderVisitor<'a, 'genv, 'tcx>
impl<'a, 'genv, 'tcx> Unpin for IllegalBinderVisitor<'a, 'genv, 'tcx>
impl<'a, 'genv, 'tcx> !UnwindSafe for IllegalBinderVisitor<'a, 'genv, 'tcx>
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<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