pub trait InstanceProxyInterface: Send + Sync {
    // Required method
    fn add_line(&self, line: &[Point; 2]) -> Result<(), Error>;
}

Required Methods§

source

fn add_line(&self, line: &[Point; 2]) -> Result<(), Error>

Implementors§