pub trait SecretProviderExt:
Send
+ Sync
+ 'static {
// Required method
fn get_secret_boxed(
&self,
client_ip: IpAddr,
) -> BoxFuture<'_, Option<Arc<[u8]>>>;
}pub trait SecretProviderExt:
Send
+ Sync
+ 'static {
// Required method
fn get_secret_boxed(
&self,
client_ip: IpAddr,
) -> BoxFuture<'_, Option<Arc<[u8]>>>;
}