pub struct Driver<__H>(pub __H);Tuple Fields§
§0: __HTrait Implementations§
Source§impl<__H: Hook> Visit for Driver<__H>
impl<__H: Hook> Visit for Driver<__H>
Source§fn visit_mono_type(&mut self, i: &MonoType)
fn visit_mono_type(&mut self, i: &MonoType)
Visit an
MonoType node; the default recurses via visit_mono_type. Override to act, calling visit_mono_type(self, i) to keep descending.Source§fn visit_row(&mut self, i: &Row)
fn visit_row(&mut self, i: &Row)
Visit an
Row node; the default recurses via visit_row. Override to act, calling visit_row(self, i) to keep descending.Source§fn visit_cmd_arg_type(&mut self, i: &CmdArgType)
fn visit_cmd_arg_type(&mut self, i: &CmdArgType)
Visit an
CmdArgType node; the default recurses via visit_cmd_arg_type. Override to act, calling visit_cmd_arg_type(self, i) to keep descending.Auto Trait Implementations§
impl<__H> Freeze for Driver<__H>where
__H: Freeze,
impl<__H> RefUnwindSafe for Driver<__H>where
__H: RefUnwindSafe,
impl<__H> Send for Driver<__H>where
__H: Send,
impl<__H> Sync for Driver<__H>where
__H: Sync,
impl<__H> Unpin for Driver<__H>where
__H: Unpin,
impl<__H> UnsafeUnpin for Driver<__H>where
__H: UnsafeUnpin,
impl<__H> UnwindSafe for Driver<__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