Struct rustc_trait_selection::infer::at::At
source · pub struct At<'a, 'tcx> {
pub infcx: &'a InferCtxt<'a, 'tcx>,
pub cause: &'a ObligationCause<'tcx>,
pub param_env: ParamEnv<'tcx>,
pub define_opaque_types: bool,
}
Fields
infcx: &'a InferCtxt<'a, 'tcx>
cause: &'a ObligationCause<'tcx>
param_env: ParamEnv<'tcx>
define_opaque_types: bool
Whether we should define opaque types or just treat them opaquely. Currently only used to prevent predicate matching from matching anything against opaque types.
Trait Implementations
sourceimpl<'cx, 'tcx> AtExt<'tcx> for At<'cx, 'tcx>
impl<'cx, 'tcx> AtExt<'tcx> for At<'cx, 'tcx>
sourcefn normalize<T>(&self, value: T) -> Result<Normalized<'tcx, T>, NoSolution>where
T: TypeFoldable<'tcx>,
fn normalize<T>(&self, value: T) -> Result<Normalized<'tcx, T>, NoSolution>where
T: TypeFoldable<'tcx>,
Normalize value
in the context of the inference context,
yielding a resulting type, or an error if value
cannot be
normalized. If you don’t care about regions, you should prefer
normalize_erasing_regions
, which is more efficient.
If the normalization succeeds and is unambiguous, returns back the normalized value along with various outlives relations (in the form of obligations that must be discharged).
N.B., this will eventually be the main means of normalizing, but for now should be used only when we actually know that normalization will succeed, since error reporting and other details are still “under development”.
Auto Trait Implementations
impl<'a, 'tcx> !RefUnwindSafe for At<'a, 'tcx>
impl<'a, 'tcx> !Send for At<'a, 'tcx>
impl<'a, 'tcx> !Sync for At<'a, 'tcx>
impl<'a, 'tcx> Unpin for At<'a, 'tcx>where
'tcx: 'a,
impl<'a, 'tcx> !UnwindSafe for At<'a, '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
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: 32 bytes