pub trait InstanceProxyInterface: Send + Sync {
type AddLineResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn add_line(&self, line: &[Point; 2]) -> Self::AddLineResponseFut;
}Required Associated Types§
Required Methods§
fn add_line(&self, line: &[Point; 2]) -> Self::AddLineResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".