pub struct Generics {
pub parent: Option<DefId>,
pub parent_count: usize,
pub params: Vec<GenericParamDef>,
pub param_def_id_to_index: FxHashMap<DefId, u32>,
pub has_self: bool,
pub has_late_bound_regions: Option<Span>,
}
Expand description
Information about the formal type/lifetime parameters associated
with an item or method. Analogous to hir::Generics
.
The ordering of parameters is the same as in Subst
(excluding child generics):
Self
(optionally), Lifetime
params…, Type
params…
Fields
parent: Option<DefId>
parent_count: usize
params: Vec<GenericParamDef>
param_def_id_to_index: FxHashMap<DefId, u32>
Reverse map to the index
field of each GenericParamDef
.
has_self: bool
has_late_bound_regions: Option<Span>
Implementations
sourceimpl<'tcx> Generics
impl<'tcx> Generics
sourcepub fn param_def_id_to_index(
&self,
tcx: TyCtxt<'tcx>,
def_id: DefId
) -> Option<u32>
pub fn param_def_id_to_index(
&self,
tcx: TyCtxt<'tcx>,
def_id: DefId
) -> Option<u32>
Looks through the generics and all parents to find the index of the
given param def-id. This is in comparison to the param_def_id_to_index
struct member, which only stores information about this item’s own
generics.
pub fn count(&self) -> usize
pub fn own_counts(&self) -> GenericParamCount
pub fn own_defaults(&self) -> GenericParamCount
pub fn requires_monomorphization(&self, tcx: TyCtxt<'tcx>) -> bool
pub fn own_requires_monomorphization(&self) -> bool
sourcepub fn param_at(
&'tcx self,
param_index: usize,
tcx: TyCtxt<'tcx>
) -> &'tcx GenericParamDef
pub fn param_at(
&'tcx self,
param_index: usize,
tcx: TyCtxt<'tcx>
) -> &'tcx GenericParamDef
Returns the GenericParamDef
with the given index.
sourcepub fn region_param(
&'tcx self,
param: &EarlyBoundRegion,
tcx: TyCtxt<'tcx>
) -> &'tcx GenericParamDef
pub fn region_param(
&'tcx self,
param: &EarlyBoundRegion,
tcx: TyCtxt<'tcx>
) -> &'tcx GenericParamDef
Returns the GenericParamDef
associated with this EarlyBoundRegion
.
sourcepub fn type_param(
&'tcx self,
param: &ParamTy,
tcx: TyCtxt<'tcx>
) -> &'tcx GenericParamDef
pub fn type_param(
&'tcx self,
param: &ParamTy,
tcx: TyCtxt<'tcx>
) -> &'tcx GenericParamDef
Returns the GenericParamDef
associated with this ParamTy
.
sourcepub fn const_param(
&'tcx self,
param: &ParamConst,
tcx: TyCtxt<'tcx>
) -> &'_ GenericParamDef
pub fn const_param(
&'tcx self,
param: &ParamConst,
tcx: TyCtxt<'tcx>
) -> &'_ GenericParamDef
Returns the GenericParamDef
associated with this ParamConst
.
sourcepub fn has_impl_trait(&'tcx self) -> bool
pub fn has_impl_trait(&'tcx self) -> bool
Returns true
if params
has impl Trait
.
sourcepub fn own_substs_no_defaults(
&'tcx self,
tcx: TyCtxt<'tcx>,
substs: &'tcx [GenericArg<'tcx>]
) -> &'tcx [GenericArg<'tcx>]
pub fn own_substs_no_defaults(
&'tcx self,
tcx: TyCtxt<'tcx>,
substs: &'tcx [GenericArg<'tcx>]
) -> &'tcx [GenericArg<'tcx>]
Returns the substs corresponding to the generic parameters
of this item, excluding Self
.
This should only be used for diagnostics purposes.
sourcepub fn own_substs(
&'tcx self,
substs: &'tcx [GenericArg<'tcx>]
) -> &'tcx [GenericArg<'tcx>]
pub fn own_substs(
&'tcx self,
substs: &'tcx [GenericArg<'tcx>]
) -> &'tcx [GenericArg<'tcx>]
Returns the substs corresponding to the generic parameters of this item, excluding Self
.
This should only be used for diagnostics purposes.
Trait Implementations
sourceimpl<'__ctx> HashStable<StableHashingContext<'__ctx>> for Generics
impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for Generics
fn hash_stable(
&self,
__hcx: &mut StableHashingContext<'__ctx>,
__hasher: &mut StableHasher
)
sourceimpl ParameterizedOverTcx for Generics
impl ParameterizedOverTcx for Generics
Auto Trait Implementations
impl RefUnwindSafe for Generics
impl !Send for Generics
impl !Sync for Generics
impl Unpin for Generics
impl UnwindSafe for Generics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
default fn fingerprint_style() -> FingerprintStyle
sourcedefault fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_debug_str(&self, Ctxt) -> String
sourcedefault fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
default fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read moresourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 88 bytes