Struct Tables

Source
pub struct Tables<K: Eq + Hash> {
Show 15 fields pub(crate) generics_of: UnordMap<K, QueryResult<Generics>>, pub(crate) refinement_generics_of: UnordMap<K, QueryResult<EarlyBinder<RefinementGenerics>>>, pub(crate) predicates_of: UnordMap<K, QueryResult<EarlyBinder<GenericPredicates>>>, pub(crate) item_bounds: UnordMap<K, QueryResult<EarlyBinder<Clauses>>>, pub(crate) assoc_refinements_of: UnordMap<K, QueryResult<AssocRefinements>>, pub(crate) assoc_refinements_def: UnordMap<FluxId<K>, QueryResult<EarlyBinder<Lambda>>>, pub(crate) default_assoc_refinements_def: UnordMap<FluxId<K>, QueryResult<Option<EarlyBinder<Lambda>>>>, pub(crate) sort_of_assoc_reft: UnordMap<FluxId<K>, QueryResult<EarlyBinder<FuncSort>>>, pub(crate) fn_sig: UnordMap<K, QueryResult<EarlyBinder<PolyFnSig>>>, pub(crate) adt_def: UnordMap<K, QueryResult<AdtDef>>, pub(crate) constant_info: UnordMap<K, QueryResult<ConstantInfo>>, pub(crate) adt_sort_def: UnordMap<K, QueryResult<AdtSortDef>>, pub(crate) variants: UnordMap<K, QueryResult<Opaqueness<EarlyBinder<PolyVariants>>>>, pub(crate) type_of: UnordMap<K, QueryResult<EarlyBinder<TyOrCtor>>>, pub(crate) normalized_defns: Rc<NormalizedDefns>,
}

Fields§

§generics_of: UnordMap<K, QueryResult<Generics>>§refinement_generics_of: UnordMap<K, QueryResult<EarlyBinder<RefinementGenerics>>>§predicates_of: UnordMap<K, QueryResult<EarlyBinder<GenericPredicates>>>§item_bounds: UnordMap<K, QueryResult<EarlyBinder<Clauses>>>§assoc_refinements_of: UnordMap<K, QueryResult<AssocRefinements>>§assoc_refinements_def: UnordMap<FluxId<K>, QueryResult<EarlyBinder<Lambda>>>§default_assoc_refinements_def: UnordMap<FluxId<K>, QueryResult<Option<EarlyBinder<Lambda>>>>§sort_of_assoc_reft: UnordMap<FluxId<K>, QueryResult<EarlyBinder<FuncSort>>>§fn_sig: UnordMap<K, QueryResult<EarlyBinder<PolyFnSig>>>§adt_def: UnordMap<K, QueryResult<AdtDef>>§constant_info: UnordMap<K, QueryResult<ConstantInfo>>§adt_sort_def: UnordMap<K, QueryResult<AdtSortDef>>§variants: UnordMap<K, QueryResult<Opaqueness<EarlyBinder<PolyVariants>>>>§type_of: UnordMap<K, QueryResult<EarlyBinder<TyOrCtor>>>§normalized_defns: Rc<NormalizedDefns>

Trait Implementations§

Source§

impl<K: Eq + Hash, __D: TyDecoder> Decodable<__D> for Tables<K>

Source§

fn decode(__decoder: &mut __D) -> Self

Source§

impl<K: Eq + Hash> Default for Tables<K>

Source§

fn default() -> Self

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

impl<K: Eq + Hash, __E: TyEncoder> Encodable<__E> for Tables<K>

Source§

fn encode(&self, __encoder: &mut __E)

Auto Trait Implementations§

§

impl<K> Freeze for Tables<K>

§

impl<K> RefUnwindSafe for Tables<K>
where K: RefUnwindSafe,

§

impl<K> !Send for Tables<K>

§

impl<K> !Sync for Tables<K>

§

impl<K> Unpin for Tables<K>
where K: Unpin,

§

impl<K> UnwindSafe for Tables<K>
where K: UnwindSafe,

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