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_page_mut(&mut self, i: &mut Page)
fn visit_page_mut(&mut self, i: &mut Page)
Visit an
Page node; the default recurses via visit_page_mut. Override to act, calling visit_page_mut(self, i) to keep descending.Source§fn visit_placed_line_mut(&mut self, i: &mut PlacedLine)
fn visit_placed_line_mut(&mut self, i: &mut PlacedLine)
Visit an
PlacedLine node; the default recurses via visit_placed_line_mut. Override to act, calling visit_placed_line_mut(self, i) to keep descending.Source§fn visit_vert_box_mut(&mut self, i: &mut VertBox)
fn visit_vert_box_mut(&mut self, i: &mut VertBox)
Visit an
VertBox node; the default recurses via visit_vert_box_mut. Override to act, calling visit_vert_box_mut(self, i) to keep descending.Source§fn visit_pure_horz_box_mut(&mut self, i: &mut PureHorzBox)
fn visit_pure_horz_box_mut(&mut self, i: &mut PureHorzBox)
Visit an
PureHorzBox node; the default recurses via visit_pure_horz_box_mut. Override to act, calling visit_pure_horz_box_mut(self, i) to keep descending.Source§fn visit_tabular_box_mut(&mut self, i: &mut TabularBox)
fn visit_tabular_box_mut(&mut self, i: &mut TabularBox)
Visit an
TabularBox node; the default recurses via visit_tabular_box_mut. Override to act, calling visit_tabular_box_mut(self, i) to keep descending.Source§fn visit_tabular_cell_box_mut(&mut self, i: &mut TabularCellBox)
fn visit_tabular_cell_box_mut(&mut self, i: &mut TabularCellBox)
Visit an
TabularCellBox node; the default recurses via visit_tabular_cell_box_mut. Override to act, calling visit_tabular_cell_box_mut(self, i) to keep descending.Source§fn visit_graphics_elem_mut(&mut self, i: &mut GraphicsElem)
fn visit_graphics_elem_mut(&mut self, i: &mut GraphicsElem)
Visit an
GraphicsElem node; the default recurses via visit_graphics_elem_mut. Override to act, calling visit_graphics_elem_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