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