pub trait InspectMut {
// Required method
fn inspect_mut(&mut self, req: Request<'_>);
}Expand description
Trait implemented by objects whose state can be inspected and mutated. Most users should not implement this trait
directly, but instead derive InspectMut.
See the Inspect trait for more information on implementation strategies.
Required Methods§
Sourcefn inspect_mut(&mut self, req: Request<'_>)
fn inspect_mut(&mut self, req: Request<'_>)
Inspects the object.