Struct ezno_checker::PostCheckData
source · pub struct PostCheckData<M: ASTImplementation> {
pub type_mappings: TypeMappings,
pub types: TypeStore,
pub module_contents: MapFileStore<WithPathMap>,
pub modules: HashMap<SourceId, SynthesisedModule<M::OwnedModule>>,
pub entry_source: SourceId,
}Expand description
Used for transformers and other things after checking!!!!
Fields§
§type_mappings: TypeMappings§types: TypeStore§module_contents: MapFileStore<WithPathMap>§modules: HashMap<SourceId, SynthesisedModule<M::OwnedModule>>§entry_source: SourceIdAuto Trait Implementations§
impl<M> RefUnwindSafe for PostCheckData<M>where <M as ASTImplementation>::OwnedModule: RefUnwindSafe,
impl<M> Send for PostCheckData<M>where <M as ASTImplementation>::OwnedModule: Send,
impl<M> Sync for PostCheckData<M>where <M as ASTImplementation>::OwnedModule: Sync,
impl<M> Unpin for PostCheckData<M>where <M as ASTImplementation>::OwnedModule: Unpin,
impl<M> UnwindSafe for PostCheckData<M>where <M as ASTImplementation>::OwnedModule: UnwindSafe,
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