pub struct DriverMut<__H>(pub __H);Tuple Fields§
§0: __HTrait Implementations§
Source§impl<__H: HookMut> VisitMut for DriverMut<__H>
impl<__H: HookMut> VisitMut for DriverMut<__H>
Source§fn visit_mono_type_mut(&mut self, i: &mut MonoType)
fn visit_mono_type_mut(&mut self, i: &mut MonoType)
Visit an
MonoType node; the default recurses via visit_mono_type_mut. Override to act, calling visit_mono_type_mut(self, i) to keep descending.Source§fn visit_row_mut(&mut self, i: &mut Row)
fn visit_row_mut(&mut self, i: &mut Row)
Visit an
Row node; the default recurses via visit_row_mut. Override to act, calling visit_row_mut(self, i) to keep descending.Source§fn visit_cmd_arg_type_mut(&mut self, i: &mut CmdArgType)
fn visit_cmd_arg_type_mut(&mut self, i: &mut CmdArgType)
Visit an
CmdArgType node; the default recurses via visit_cmd_arg_type_mut. Override to act, calling visit_cmd_arg_type_mut(self, i) to keep descending.Auto Trait Implementations§
impl<__H> Freeze for DriverMut<__H>where
__H: Freeze,
impl<__H> RefUnwindSafe for DriverMut<__H>where
__H: RefUnwindSafe,
impl<__H> Send for DriverMut<__H>where
__H: Send,
impl<__H> Sync for DriverMut<__H>where
__H: Sync,
impl<__H> Unpin for DriverMut<__H>where
__H: Unpin,
impl<__H> UnsafeUnpin for DriverMut<__H>where
__H: UnsafeUnpin,
impl<__H> UnwindSafe for DriverMut<__H>where
__H: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more