Skip to main content

InferenceTyLoweringContext

Struct InferenceTyLoweringContext 

Source
pub(super) struct InferenceTyLoweringContext<'db, 'a> {
    ctx: TyLoweringContext<'db, 'a>,
    diagnostics: &'a Diagnostics,
    source: InferenceTyDiagnosticSource,
    defined_anon_consts: &'a RefCell<ThinVec<AnonConstId<'db>>>,
}

Fields§

§ctx: TyLoweringContext<'db, 'a>§diagnostics: &'a Diagnostics§source: InferenceTyDiagnosticSource§defined_anon_consts: &'a RefCell<ThinVec<AnonConstId<'db>>>

Implementations§

Source§

impl<'db, 'a> InferenceTyLoweringContext<'db, 'a>

Source

pub(super) fn new( db: &'db dyn HirDatabase, resolver: &'a Resolver<'db>, store: &'db ExpressionStore, diagnostics: &'a Diagnostics, source: InferenceTyDiagnosticSource, def: ExpressionStoreOwnerId, generic_def: GenericDefId, generics: &'a OnceCell<Generics<'db>>, lifetime_elision: LifetimeElisionKind<'db>, allow_using_generic_params: bool, infer_vars: Option<&'a mut dyn TyLoweringInferVarsCtx<'db>>, defined_anon_consts: &'a RefCell<ThinVec<AnonConstId<'db>>>, lifetime_lowering_mode: LifetimeLoweringMode, ) -> Self

Source

pub(super) fn at_path<'b>( &'b mut self, path: &'b Path, node: ExprOrPatIdPacked, ) -> PathLoweringContext<'b, 'a, 'db>

Source

pub(super) fn at_path_forget_diagnostics<'b>( &'b mut self, path: &'b Path, ) -> PathLoweringContext<'b, 'a, 'db>

Source

pub(super) fn forget_diagnostics(&mut self)

Methods from Deref<Target = TyLoweringContext<'db, 'a>>§

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_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 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(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

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 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>>

Trait Implementations§

Source§

impl<'db, 'a> Deref for InferenceTyLoweringContext<'db, 'a>

Source§

type Target = TyLoweringContext<'db, 'a>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for InferenceTyLoweringContext<'_, '_>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl Drop for InferenceTyLoweringContext<'_, '_>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'db, 'a> !UnwindSafe for InferenceTyLoweringContext<'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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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