pub trait GetInspector {
type Inspector: Inspector;
// Required method
fn get_inspector(&mut self) -> &mut Self::Inspector;
}
Expand description
Provides access to an Inspector
instance.
Required Associated Types§
Required Methods§
Sourcefn get_inspector(&mut self) -> &mut Self::Inspector
fn get_inspector(&mut self) -> &mut Self::Inspector
Returns the associated Inspector
.