Trait inspect::InspectMut
source · 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.