Skip to main content

DelegationResolver

Struct DelegationResolver 

Source
pub(crate) struct DelegationResolver<'a, 'hir>(&'a LoweringContext<'a, 'hir>);
Expand description

Abstracts operations that are needed for delegation’s resolution, so resolution is independent of LoweringContext. Placed in a separate module so LoweringContext can not be accessed directly.

Tuple Fields§

§0: &'a LoweringContext<'a, 'hir>

Implementations§

Source§

impl<'hir> DelegationResolver<'_, 'hir>

Source

fn resolve_generics<'a>( &self, delegation: &'a Delegation, sig_id: DefId, ) -> Result<GenericsResolution<'a, 'hir>, ErrorGuaranteed>

Source

fn get_user_args<'a>( &self, segment: &'a PathSegment, ) -> Option<&'a AngleBracketedArgs>

Source

pub(super) fn resolve_and_generate_generics( &self, delegation: &Delegation, sig_id: DefId, ) -> Result<GenericsGenerationResults<'hir>, ErrorGuaranteed>

Source

fn create_slots_from_args( tcx: TyCtxt<'_>, args: &AngleBracketedArgs, params: &'hir [GenericParamDef], add_first_self: bool, ) -> Vec<GenericArgSlot<&'hir GenericParamDef>>

Generates generic argument slots for user-specified args and generic params of the signature function. This function checks whether there are infers (kw::UnderscoreLifetime or kw::Underscore) in user-specified args, and if so we add Generate slot meaning we have to generate generic param for delegation and propagate it instead of this infer. We zip over user-specified args and signature generic params, so if there are more infers than generic params then we will not process all infers thus not generating more generic params then needed (anyway it is an error).

Source§

impl<'a, 'tcx> DelegationResolver<'a, 'tcx>

Source

pub(crate) fn new(ctx: &'a LoweringContext<'a, 'tcx>) -> Self

Source

pub(crate) fn tcx(&self) -> TyCtxt<'tcx>

Source

pub(crate) fn owner_id(&self) -> LocalDefId

Source

pub(crate) fn is_definition(&self, id: NodeId) -> bool

(from tests\ui\delegation\target-expr-removal-defs-inside.rs):

reuse impl Trait for S1 {
    some::path::<{ fn foo() {} }>::xd();
    fn foo() {}
    self.0
}

Constant from unresolved path will be in node_id_to_def_id, fn foo() {} will not be in node_id_to_def_id but will be in owners, both have LocalDefId, so we check those two maps.

Source

pub(crate) fn get_resolution_id( &self, id: NodeId, ) -> Result<DefId, ErrorGuaranteed>

Source§

impl<'tcx> DelegationResolver<'_, 'tcx>

Source

pub(super) fn resolve_delegation( &self, delegation: &Delegation, span: Span, ) -> Result<(DelegationResolution, GenericsGenerationResults<'tcx>), ErrorGuaranteed>

Source

fn check_for_cycles( &self, def_id: DefId, span: Span, ) -> Result<(), ErrorGuaranteed>

Source

fn check_block_soundness( &self, delegation: &Delegation, sig_id: DefId, is_method: bool, param_count: usize, ) -> Result<(bool, bool), ErrorGuaranteed>

Source

fn create_sig_mapping( &self, delegation: &Delegation, span: Span, should_generate_block: bool, parent: LocalDefId, sig: FnSig<'tcx>, contains_defs: bool, ) -> Result<SigMapping, ErrorGuaranteed>

Source

fn can_perform_self_mapping( &self, delegation: &Delegation, parent: LocalDefId, ) -> Result<bool, ErrorGuaranteed>

Auto Trait Implementations§

§

impl<'a, 'hir> !DynSend for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> !DynSync for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> !RefUnwindSafe for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> !Send for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> !Sync for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> !UnwindSafe for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> Freeze for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> Unpin for DelegationResolver<'a, 'hir>

§

impl<'a, 'hir> UnsafeUnpin for DelegationResolver<'a, 'hir>

Blanket Implementations§

Source§

impl<T> Aligned for T

Source§

const ALIGN: Alignment

Alignment of Self.
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
Source§

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

Source§

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

Source§

type Output = R

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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.

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

impl<K> IntoQueryKey<K> for K

Source§

fn into_query_key(self) -> K

Argument conversion from Self to K. This should always be a very cheap conversion, e.g. LocalDefId::to_def_id.
Source§

impl<T> MaybeResult<T> for T

Source§

type Error = !

Source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

Source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

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: 8 bytes