Trait aquascope_front::plugin::AquascopeAnalysis
source · pub trait AquascopeAnalysis: Sized + Send + Sync {
type Output: Serialize + Send + Sync;
// Required method
fn analyze(
&mut self,
tcx: TyCtxt<'_>,
id: BodyId
) -> AquascopeResult<Self::Output>;
}
Required Associated Types§
Required Methods§
fn analyze( &mut self, tcx: TyCtxt<'_>, id: BodyId ) -> AquascopeResult<Self::Output>
Object Safety§
This trait is not object safe.