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