pub struct SyntheticItemData<'tcx> {
generics: &'tcx Generics,
clauses: &'tcx [Clause<'tcx>],
param_env: ParamEnv<'tcx>,
}Fields§
§generics: &'tcx Generics§clauses: &'tcx [Clause<'tcx>]§param_env: ParamEnv<'tcx>Trait Implementations§
Source§impl<'tcx> Clone for SyntheticItemData<'tcx>
impl<'tcx> Clone for SyntheticItemData<'tcx>
Source§fn clone(&self) -> SyntheticItemData<'tcx>
fn clone(&self) -> SyntheticItemData<'tcx>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'tcx> Copy for SyntheticItemData<'tcx>
Auto Trait Implementations§
impl<'tcx> !RefUnwindSafe for SyntheticItemData<'tcx>
impl<'tcx> !UnwindSafe for SyntheticItemData<'tcx>
impl<'tcx> DynSend for SyntheticItemData<'tcx>
impl<'tcx> DynSync for SyntheticItemData<'tcx>
impl<'tcx> Freeze for SyntheticItemData<'tcx>
impl<'tcx> Send for SyntheticItemData<'tcx>
impl<'tcx> Sync for SyntheticItemData<'tcx>
impl<'tcx> Unpin for SyntheticItemData<'tcx>
impl<'tcx> UnsafeUnpin for SyntheticItemData<'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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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