pub enum PathChunk<'tcx> {
AssocItem {
item: AssocItem,
generic_args: &'tcx [GenericArg<'tcx>],
impl_exprs: Vec<ImplExpr<'tcx>>,
predicate: PolyTraitPredicate<'tcx>,
index: usize,
},
Parent {
predicate: PolyTraitPredicate<'tcx>,
index: usize,
},
}
Variants§
AssocItem
Fields
§
generic_args: &'tcx [GenericArg<'tcx>]
The arguments provided to the item (for GATs).
§
impl_exprs: Vec<ImplExpr<'tcx>>
The impl exprs that must be satisfied to apply the given arguments to the item. E.g.
T: Clone
in the following example:
ⓘ
trait Foo {
type Type<T: Clone>: Debug;
}
§
predicate: PolyTraitPredicate<'tcx>
The implemented predicate.
Parent
Fields
§
predicate: PolyTraitPredicate<'tcx>
The implemented predicate.
Trait Implementations§
source§impl<'tcx, S: UnderOwnerState<'tcx>> SInto<S, ImplExprPathChunk> for PathChunk<'tcx>
impl<'tcx, S: UnderOwnerState<'tcx>> SInto<S, ImplExprPathChunk> for PathChunk<'tcx>
fn sinto(&self, s: &S) -> ImplExprPathChunk
Auto Trait Implementations§
impl<'tcx> Freeze for PathChunk<'tcx>
impl<'tcx> !RefUnwindSafe for PathChunk<'tcx>
impl<'tcx> Send for PathChunk<'tcx>
impl<'tcx> Sync for PathChunk<'tcx>
impl<'tcx> Unpin for PathChunk<'tcx>
impl<'tcx> !UnwindSafe for PathChunk<'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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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