struct ImplicitParamCollector<'a, 'tcx> {
tcx: TyCtxt<'tcx>,
path_res_map: &'a UnordMap<NodeId, PartialRes>,
kind: ScopeKind,
params: Vec<(Ident, ParamKind, NodeId)>,
}
Fields§
§tcx: TyCtxt<'tcx>
§path_res_map: &'a UnordMap<NodeId, PartialRes>
§kind: ScopeKind
§params: Vec<(Ident, ParamKind, NodeId)>
Implementations§
Trait Implementations§
Source§impl ScopedVisitor for ImplicitParamCollector<'_, '_>
impl ScopedVisitor for ImplicitParamCollector<'_, '_>
fn is_box(&self, segment: &PathSegment) -> bool
fn enter_scope(&mut self, kind: ScopeKind) -> ControlFlow<()>
fn on_implicit_param(&mut self, ident: Ident, param: ParamKind, node_id: NodeId)
fn exit_scope(&mut self)
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, 'tcx> Freeze for ImplicitParamCollector<'a, 'tcx>
impl<'a, 'tcx> !RefUnwindSafe for ImplicitParamCollector<'a, 'tcx>
impl<'a, 'tcx> !Send for ImplicitParamCollector<'a, 'tcx>
impl<'a, 'tcx> !Sync for ImplicitParamCollector<'a, 'tcx>
impl<'a, 'tcx> Unpin for ImplicitParamCollector<'a, 'tcx>
impl<'a, 'tcx> !UnwindSafe for ImplicitParamCollector<'a, '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