pub struct BronziteQueryCallbacks { /* private fields */ }Trait Implementationsยง
Sourceยงimpl Callbacks for BronziteQueryCallbacks
impl Callbacks for BronziteQueryCallbacks
Sourceยงfn after_analysis(
&mut self,
_compiler: &Compiler,
tcx: TyCtxt<'_>,
) -> Compilation
fn after_analysis( &mut self, _compiler: &Compiler, tcx: TyCtxt<'_>, ) -> Compilation
Called after analysis. Return value instructs the compiler whether to
continue the compilation afterwards (defaults to
Compilation::Continue)ยงfn after_crate_root_parsing(
&mut self,
_compiler: &Compiler,
_krate: &mut Crate,
) -> Compilation
fn after_crate_root_parsing( &mut self, _compiler: &Compiler, _krate: &mut Crate, ) -> Compilation
Called after parsing the crate root. Submodules are not yet parsed when
this callback is called. Return value instructs the compiler whether to
continue the compilation afterwards (defaults to
Compilation::Continue)ยงfn after_expansion<'tcx>(
&mut self,
_compiler: &Compiler,
_tcx: TyCtxt<'tcx>,
) -> Compilation
fn after_expansion<'tcx>( &mut self, _compiler: &Compiler, _tcx: TyCtxt<'tcx>, ) -> Compilation
Called after expansion. Return value instructs the compiler whether to
continue the compilation afterwards (defaults to
Compilation::Continue)Auto Trait Implementationsยง
impl Freeze for BronziteQueryCallbacks
impl RefUnwindSafe for BronziteQueryCallbacks
impl Send for BronziteQueryCallbacks
impl Sync for BronziteQueryCallbacks
impl Unpin for BronziteQueryCallbacks
impl UnwindSafe for BronziteQueryCallbacks
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