pub(crate) trait TableVisitor {
// Required method
fn handle_cell(&mut self, cell: &TableCell, loc: Point, size: Point);
}Required Methods§
fn handle_cell(&mut self, cell: &TableCell, loc: Point, size: Point)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".