pub trait QueryableProxyInterface: Send + Sync { type QueryResponseFut: Future<Output = Result<Vec<u8>, Error>> + Send; // Required method fn query(&self) -> Self::QueryResponseFut; }