pub trait WriteOnlyLogProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<DebugLog, Error>> + Send;
// Required method
fn get(&self) -> Self::GetResponseFut;
}
pub trait WriteOnlyLogProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<DebugLog, Error>> + Send;
// Required method
fn get(&self) -> Self::GetResponseFut;
}