Skip to main content

RecordVisitor

Trait RecordVisitor 

Source
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>,
    );
}

Required Methods§

Source

fn handle_box(&mut self, loc: Point, size: Point)

Source

fn handle_text( &mut self, loc: Point, size: Point, label: &str, port: &Option<String>, )

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§