pub trait DriveMut<'s, V: Visitor> {
// Required method
fn drive_inner_mut(&'s mut self, v: &mut V) -> ControlFlow<V::Break>;
}Expand description
A type that can be visited mutably.
Required Methods§
Sourcefn drive_inner_mut(&'s mut self, v: &mut V) -> ControlFlow<V::Break>
fn drive_inner_mut(&'s mut self, v: &mut V) -> ControlFlow<V::Break>
Call v.visit() on the immediate contents of self.