Skip to main content

TyLoweringContext

Struct TyLoweringContext 

Source
pub struct TyLoweringContext<'db, 'a> {
Show 22 fields pub db: &'db dyn HirDatabase, pub(crate) interner: DbInterner<'db>, types: &'db DefaultAny<'db>, lang_items: &'db LangItems, resolver: &'a Resolver<'db>, store: &'db ExpressionStore, def: ExpressionStoreOwnerId, generic_def: GenericDefId, generics: &'a OnceCell<Generics<'db>>, in_binders: DebruijnIndex, impl_trait_mode: ImplTraitLoweringState, interning_mode: LoweringMode, pub(crate) unsized_types: FxHashSet<Ty<'db>>, pub(crate) diagnostics: ThinVec<TyLoweringDiagnostic>, lifetime_elision: LifetimeElisionKind<'db>, forbid_params_after: Option<u32>, forbid_params_after_reason: ForbidParamsAfterReason, pub(crate) defined_anon_consts: ThinVec<AnonConstId<'db>>, infer_vars: Option<&'a mut dyn TyLoweringInferVarsCtx<'db>>, is_lowering_impl_trait_bounds: bool, bound_vars: Vec<(Vec<Name>, BoundVarKinds<'db>)>, lifetime_lowering_mode: LifetimeLoweringMode,
}

Fields§

§db: &'db dyn HirDatabase§interner: DbInterner<'db>§types: &'db DefaultAny<'db>§lang_items: &'db LangItems§resolver: &'a Resolver<'db>§store: &'db ExpressionStore§def: ExpressionStoreOwnerId§generic_def: GenericDefId§generics: &'a OnceCell<Generics<'db>>§in_binders: DebruijnIndex§impl_trait_mode: ImplTraitLoweringState§interning_mode: LoweringMode§unsized_types: FxHashSet<Ty<'db>>

Tracks types with explicit ?Sized bounds.

§diagnostics: ThinVec<TyLoweringDiagnostic>§lifetime_elision: LifetimeElisionKind<'db>§forbid_params_after: Option<u32>§forbid_params_after_reason: ForbidParamsAfterReason§defined_anon_consts: ThinVec<AnonConstId<'db>>§infer_vars: Option<&'a mut dyn TyLoweringInferVarsCtx<'db>>§is_lowering_impl_trait_bounds: bool§bound_vars: Vec<(Vec<Name>, BoundVarKinds<'db>)>§lifetime_lowering_mode: LifetimeLoweringMode

Implementations§

Source§

impl<'db, 'a> TyLoweringContext<'db, 'a>

Source

pub fn new( db: &'db dyn HirDatabase, resolver: &'a Resolver<'db>, store: &'db ExpressionStore, def: ExpressionStoreOwnerId, generic_def: GenericDefId, generics: &'a OnceCell<Generics<'db>>, lifetime_elision: LifetimeElisionKind<'db>, lifetime_lowering_mode: LifetimeLoweringMode, ) -> Self

Source

pub(crate) fn set_lifetime_elision( &mut self, lifetime_elision: LifetimeElisionKind<'db>, )

Source

pub(crate) fn set_owner(&mut self, owner: &'a SingleGenerics<'db>)

Source

pub(crate) fn with_interning_mode(self, interning_mode: LoweringMode) -> Self

Source

pub(crate) fn with_debruijn<T>( &mut self, debruijn: DebruijnIndex, f: impl FnOnce(&mut TyLoweringContext<'db, '_>) -> T, ) -> T

Source

pub(crate) fn with_shifted_in<T>( &mut self, binder: &[Name], f: impl FnOnce(&mut TyLoweringContext<'db, '_>) -> T, ) -> (T, BoundVarKinds<'db>)

Source

pub(crate) fn with_impl_trait_mode( self, impl_trait_mode: ImplTraitLoweringMode, ) -> Self

Source

pub(crate) fn impl_trait_mode( &mut self, impl_trait_mode: ImplTraitLoweringMode, ) -> &mut Self

Source

pub(crate) fn forbid_params_after( &mut self, index: u32, reason: ForbidParamsAfterReason, )

Source

pub fn with_infer_vars_behavior( self, behavior: Option<&'a mut dyn TyLoweringInferVarsCtx<'db>>, ) -> Self

Source

pub(crate) fn push_diagnostic(&mut self, diagnostic: TyLoweringDiagnostic)

Source

fn push_infer_vars_not_allowed(&mut self, span: Span)

Source

pub(crate) fn expect_table(&mut self) -> &mut InferenceTable<'db>

Source

fn next_ty_var(&mut self, span: Span) -> Ty<'db>

Source

fn next_const_var(&mut self, span: Span) -> Const<'db>

Source

fn next_region_var(&mut self, span: Span) -> Region<'db>

Source

fn push_bound_vars(&mut self, binder: &[Name])

Source

fn pop_bound_vars(&mut self) -> BoundVarKinds<'db>

Source

fn peek_bound_vars(&self) -> BoundVarKinds<'db>

Source

fn bound_vars( db: &'db dyn HirDatabase, interner: DbInterner<'db>, def: GenericDefId, generic: &'a OnceCell<Generics<'db>>, ) -> BoundVarKinds<'db>

Source§

impl<'db, 'a> TyLoweringContext<'db, 'a>

Source

pub fn lower_ty(&mut self, type_ref: TypeRefId) -> Ty<'db>

Source

pub(crate) fn lower_const( &mut self, const_ref: ConstRef, const_type: Ty<'db>, ) -> Const<'db>

Source

pub(crate) fn lower_expr_as_const( &mut self, expr_id: ExprId, const_type: Ty<'db>, ) -> Const<'db>

Source

pub(crate) fn lower_path_as_const( &mut self, path: &Path, _const_type: Ty<'db>, ) -> Const<'db>

Source

fn generics(&self) -> &Generics<'db>

Source

fn param_index_is_disallowed(&self, index: u32) -> bool

Source

fn type_param(&mut self, id: TypeParamId, index: u32) -> Ty<'db>

Source

fn region_param( &mut self, id: LifetimeParamId, index: u32, is_late_bound: bool, ) -> Region<'db>

Source

fn hrtb_region_param( &self, index: u32, debruijn: DebruijnIndex, parent: GenericDefId, ) -> Region<'db>

Source

pub fn lower_ty_ext( &mut self, type_ref_id: TypeRefId, ) -> (Ty<'db>, Option<TypeNs>)

Source

fn lower_pattern_type( &mut self, pat: PatId, ty: Ty<'db>, ) -> Option<Pattern<'db>>

Source

fn lower_fn_ptr(&mut self, fn_: &FnType) -> Ty<'db>

Source

fn lower_ty_only_param(&self, type_ref: TypeRefId) -> Option<TypeOrConstParamId>

This is only for generic_predicates_for_param, where we can’t just lower the self types of the predicates since that could lead to cycles. So we just check here if the type_ref resolves to a generic param, and which.

Source

fn on_path_diagnostic_callback<'b>( type_ref: TypeRefId, ) -> PathDiagnosticCallback<'b, 'db>

Source

fn at_path(&mut self, path_id: PathId) -> PathLoweringContext<'_, 'a, 'db>

Source

pub(crate) fn lower_path( &mut self, path: &Path, path_id: PathId, ) -> (Ty<'db>, Option<TypeNs>)

Source

fn lower_trait_ref_from_path( &mut self, path_id: PathId, explicit_self_ty: Ty<'db>, ) -> Option<(TraitRef<'db>, PathLoweringContext<'_, 'a, 'db>)>

Source

fn lower_trait_ref( &mut self, trait_ref: &HirTraitRef, explicit_self_ty: Ty<'db>, ) -> Option<TraitRef<'db>>

Source

pub(crate) fn lower_where_predicate<'b>( &'b mut self, where_predicate: &'b WherePredicate, ignore_bindings: bool, ) -> impl Iterator<Item = (Clause<'db>, GenericPredicateSource)> + use<'a, 'b, 'db>

Source

pub(crate) fn lower_type_bound<'b>( &'b mut self, bound: &'b TypeBound, self_ty: Ty<'db>, ignore_bindings: bool, ) -> impl Iterator<Item = (Clause<'db>, GenericPredicateSource)> + use<'b, 'a, 'db>

Source

fn lower_dyn_trait(&mut self, bounds: &[TypeBound]) -> Ty<'db>

Source

fn lower_impl_trait( &mut self, def_id: InternedOpaqueTyId<'db>, bounds: &[TypeBound], ) -> ImplTrait

Source

pub(crate) fn lower_lifetime(&mut self, lifetime: LifetimeRefId) -> Region<'db>

Source

fn find_and_lower_hrtb_lifetime( &mut self, lifetime: LifetimeRefId, ) -> Option<Region<'db>>

Auto Trait Implementations§

§

impl<'db, 'a> Freeze for TyLoweringContext<'db, 'a>

§

impl<'db, 'a> !RefUnwindSafe for TyLoweringContext<'db, 'a>

§

impl<'db, 'a> !Send for TyLoweringContext<'db, 'a>

§

impl<'db, 'a> !Sync for TyLoweringContext<'db, 'a>

§

impl<'db, 'a> Unpin for TyLoweringContext<'db, 'a>

§

impl<'db, 'a> UnsafeUnpin for TyLoweringContext<'db, 'a>

§

impl<'db, 'a> !UnwindSafe for TyLoweringContext<'db, 'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T, R> CollectAndApply<T, R> for T

§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IntoBox<dyn Any> for T
where T: Any,

§

fn into_box(self) -> Box<dyn Any>

Convert self into the appropriate boxed form.
Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Lookup<T> for T

§

fn into_owned(self) -> T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<I, T, U> Upcast<I, U> for T
where U: UpcastFrom<I, T>,

§

fn upcast(self, interner: I) -> U

§

impl<I, T> UpcastFrom<I, T> for T

§

fn upcast_from(from: T, _tcx: I) -> T

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more