pub trait ReadableProxyInterface: Send + Sync {
type ReadResponseFut: Future<Output = Result<ReadableReadResult, Error>> + Send;
// Required method
fn read(&self, count: u64) -> Self::ReadResponseFut;
}
pub trait ReadableProxyInterface: Send + Sync {
type ReadResponseFut: Future<Output = Result<ReadableReadResult, Error>> + Send;
// Required method
fn read(&self, count: u64) -> Self::ReadResponseFut;
}