pub struct LoweringDatabaseGroupStorage__ {
pub program_text: Arc<<ProgramTextQuery as Query>::Storage>,
pub solver_choice: Arc<<SolverChoiceQuery as Query>::Storage>,
pub program_ir: Arc<<ProgramIrQuery as Query>::Storage>,
pub coherence: Arc<<CoherenceQuery as Query>::Storage>,
pub orphan_check: Arc<<OrphanCheckQuery as Query>::Storage>,
pub checked_program: Arc<<CheckedProgramQuery as Query>::Storage>,
pub environment: Arc<<EnvironmentQuery as Query>::Storage>,
pub solver: Arc<<SolverQuery as Query>::Storage>,
}
Fields§
§program_text: Arc<<ProgramTextQuery as Query>::Storage>
§solver_choice: Arc<<SolverChoiceQuery as Query>::Storage>
§program_ir: Arc<<ProgramIrQuery as Query>::Storage>
§coherence: Arc<<CoherenceQuery as Query>::Storage>
§orphan_check: Arc<<OrphanCheckQuery as Query>::Storage>
§checked_program: Arc<<CheckedProgramQuery as Query>::Storage>
§environment: Arc<<EnvironmentQuery as Query>::Storage>
§solver: Arc<<SolverQuery as Query>::Storage>
Implementations§
source§impl LoweringDatabaseGroupStorage__
impl LoweringDatabaseGroupStorage__
pub fn fmt_index( &self, db: &(dyn LoweringDatabase + '_), input: DatabaseKeyIndex, fmt: &mut Formatter<'_>, ) -> Result
pub fn maybe_changed_since( &self, db: &(dyn LoweringDatabase + '_), input: DatabaseKeyIndex, revision: Revision, ) -> bool
pub fn for_each_query( &self, _runtime: &Runtime, op: &mut dyn FnMut(&dyn QueryStorageMassOps), )
Auto Trait Implementations§
impl Freeze for LoweringDatabaseGroupStorage__
impl RefUnwindSafe for LoweringDatabaseGroupStorage__
impl !Send for LoweringDatabaseGroupStorage__
impl !Sync for LoweringDatabaseGroupStorage__
impl Unpin for LoweringDatabaseGroupStorage__
impl UnwindSafe for LoweringDatabaseGroupStorage__
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Cast for T
impl<T> Cast for T
source§fn cast<U>(self, interner: <U as HasInterner>::Interner) -> Uwhere
Self: CastTo<U>,
U: HasInterner,
fn cast<U>(self, interner: <U as HasInterner>::Interner) -> Uwhere
Self: CastTo<U>,
U: HasInterner,
Cast a value to type
U
using CastTo
.