flux_middle::rty::refining

Struct Refiner

Source
pub struct Refiner<'genv, 'tcx> {
    genv: GlobalEnv<'genv, 'tcx>,
    def_id: DefId,
    generics: Generics,
    refine: fn(_: BaseTy) -> SubsetTyCtor,
}

Fields§

§genv: GlobalEnv<'genv, 'tcx>§def_id: DefId§generics: Generics§refine: fn(_: BaseTy) -> SubsetTyCtor

Implementations§

Source§

impl<'genv, 'tcx> Refiner<'genv, 'tcx>

Source

pub fn new( genv: GlobalEnv<'genv, 'tcx>, def_id: DefId, refine: fn(_: BaseTy) -> SubsetTyCtor, ) -> QueryResult<Self>

Source

pub fn default(genv: GlobalEnv<'genv, 'tcx>, def_id: DefId) -> QueryResult<Self>

Source

pub fn with_holes( genv: GlobalEnv<'genv, 'tcx>, def_id: DefId, ) -> QueryResult<Self>

Source

pub(crate) fn refine_generic_predicates( &self, generics: &GenericPredicates, ) -> QueryResult<GenericPredicates>

Source

pub(crate) fn refine_clauses( &self, clauses: &[Clause], ) -> QueryResult<List<Clause>>

Source

fn refine_clause(&self, clause: &Clause) -> QueryResult<Option<Clause>>

Source

pub fn refine_existential_predicate( &self, poly_pred: &PolyExistentialPredicate, ) -> QueryResult<PolyExistentialPredicate>

Source

pub fn refine_existential_predicate_generic_args( &self, def_id: DefId, args: &GenericArgs, ) -> QueryResult<GenericArgs>

Source

pub fn refine_trait_ref(&self, trait_ref: &TraitRef) -> QueryResult<TraitRef>

Source

pub fn refine_variant_def( &self, adt_def_id: DefId, variant_idx: VariantIdx, ) -> QueryResult<PolyVariant>

Source

pub fn refine_binders<S, T, F>( &self, t: &Binder<S>, f: F, ) -> QueryResult<Binder<T>>
where F: FnMut(&S) -> QueryResult<T>,

Source

pub fn refine_poly_fn_sig(&self, fn_sig: &PolyFnSig) -> QueryResult<PolyFnSig>

Source

fn refine_generic_args( &self, def_id: DefId, args: &GenericArgs, ) -> QueryResult<GenericArgs>

Source

pub fn refine_generic_arg( &self, param: &GenericParamDef, arg: &GenericArg, ) -> QueryResult<GenericArg>

Source

fn refine_alias_ty( &self, alias_kind: AliasKind, alias_ty: &AliasTy, ) -> QueryResult<AliasTy>

Source

pub fn refine_ty(&self, ty: &Ty) -> QueryResult<Ty>

Source

pub fn refine_ty_or_base(&self, ty: &Ty) -> QueryResult<TyOrBase>

Source

fn as_default(&self) -> Self

Source

fn adt_def(&self, def_id: DefId) -> QueryResult<AdtDef>

Source

fn generics_of(&self, def_id: DefId) -> QueryResult<Generics>

Source

fn refine_refine_args_for_alias_ty( &self, def_id: DefId, alias_kind: AliasKind, ) -> QueryResult<RefineArgs>

Source

fn param(&self, param_ty: ParamTy) -> QueryResult<GenericParamDef>

Auto Trait Implementations§

§

impl<'genv, 'tcx> Freeze for Refiner<'genv, 'tcx>

§

impl<'genv, 'tcx> !RefUnwindSafe for Refiner<'genv, 'tcx>

§

impl<'genv, 'tcx> !Send for Refiner<'genv, 'tcx>

§

impl<'genv, 'tcx> !Sync for Refiner<'genv, 'tcx>

§

impl<'genv, 'tcx> Unpin for Refiner<'genv, 'tcx>

§

impl<'genv, 'tcx> !UnwindSafe for Refiner<'genv, 'tcx>

Blanket Implementations§

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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<P> IntoQueryParam<P> for P

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.