pub trait OptCheck {
// Required methods
fn new() -> Self;
fn check(&mut self, graph: &Graph, tcx: &TyCtxt<'_>);
fn report(&self, graph: &Graph);
}
Required Methods§
fn new() -> Self
fn check(&mut self, graph: &Graph, tcx: &TyCtxt<'_>)
fn report(&self, graph: &Graph)
Object Safety§
This trait is not object safe.