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;
}

Required Associated Types§

source

type ReadyResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

source

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

source

fn ready(&self) -> Self::ReadyResponseFut

Implementors§