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