pub struct Pick<'tcx> {
pub item: AssocItem,
pub kind: PickKind<'tcx>,
pub import_ids: SmallVec<[LocalDefId; 1]>,
pub autoderefs: usize,
pub autoref_or_ptr_adjustment: Option<AutorefOrPtrAdjustment>,
pub self_ty: Ty<'tcx>,
}
Fields
item: AssocItem
kind: PickKind<'tcx>
import_ids: SmallVec<[LocalDefId; 1]>
autoderefs: usize
Indicates that the source expression should be autoderef’d N times
ⓘ
A = expr | *expr | **expr | ...
autoref_or_ptr_adjustment: Option<AutorefOrPtrAdjustment>
Indicates that we want to add an autoref (and maybe also unsize it), or if the receiver is
*mut T
, convert it to *const T
.
self_ty: Ty<'tcx>
Trait Implementations
impl<'tcx> StructuralPartialEq for Pick<'tcx>
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for Pick<'tcx>
impl<'tcx> Send for Pick<'tcx>
impl<'tcx> Sync for Pick<'tcx>
impl<'tcx> Unpin for Pick<'tcx>
impl<'tcx> !UnwindSafe for Pick<'tcx>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 96 bytes