pub trait InstanceProxyInterface: Send + Sync {
type ReadyResponseFut: Future<Output = Result<(), Error>> + Send;
// Required methods
fn add_lines(&self, lines: &[[Point; 2]]) -> Result<(), Error>;
fn ready(&self) -> Self::ReadyResponseFut;
}