Struct hax_frontend_exporter::state::ItemCache

source ·
pub struct ItemCache<'tcx> {
    pub def_id: Option<DefId>,
    pub full_def: Option<Arc<FullDef>>,
    pub tys: HashMap<Ty<'tcx>, Ty>,
    pub predicate_searcher: Option<PredicateSearcher<'tcx>>,
    pub impl_exprs: HashMap<PolyTraitRef<'tcx>, ImplExpr>,
    pub thir: Option<(Rc<Thir<'tcx>>, ExprId)>,
}
Expand description

Per-item cache

Fields§

§def_id: Option<DefId>

The translated DefId.

§full_def: Option<Arc<FullDef>>

The translated definition.

§tys: HashMap<Ty<'tcx>, Ty>

Cache the Ty translations.

§predicate_searcher: Option<PredicateSearcher<'tcx>>

Cache the trait resolution engine for each item.

§impl_exprs: HashMap<PolyTraitRef<'tcx>, ImplExpr>

Cache of trait refs to resolved impl expressions.

§thir: Option<(Rc<Thir<'tcx>>, ExprId)>

Cache thir bodies.

Trait Implementations§

source§

impl<'tcx> Default for ItemCache<'tcx>

source§

fn default() -> ItemCache<'tcx>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'tcx> Freeze for ItemCache<'tcx>

§

impl<'tcx> !RefUnwindSafe for ItemCache<'tcx>

§

impl<'tcx> !Send for ItemCache<'tcx>

§

impl<'tcx> !Sync for ItemCache<'tcx>

§

impl<'tcx> Unpin for ItemCache<'tcx>

§

impl<'tcx> !UnwindSafe for ItemCache<'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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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>,

§

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>,

§

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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more