pub trait DataPlaneProxyInterface: Send + Sync {
    type DataDoResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn data_do(&self) -> Self::DataDoResponseFut;
}

Required Associated Types§

source

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

Required Methods§

source

fn data_do(&self) -> Self::DataDoResponseFut

Implementors§