pub trait RecordVisitor {
// Required methods
fn handle_box(&mut self, loc: Point, size: Point);
fn handle_text(
&mut self,
loc: Point,
size: Point,
label: &str,
port: &Option<String>,
);
}
pub trait RecordVisitor {
// Required methods
fn handle_box(&mut self, loc: Point, size: Point);
fn handle_text(
&mut self,
loc: Point,
size: Point,
label: &str,
port: &Option<String>,
);
}