pub trait OptOutAdminProxyInterface: Send + Sync {
type SetResponseFut: Future<Output = Result<OptOutAdminSetResult, Error>> + Send;
// Required method
fn set(&self, value: OptOutPreference) -> Self::SetResponseFut;
}
pub trait OptOutAdminProxyInterface: Send + Sync {
type SetResponseFut: Future<Output = Result<OptOutAdminSetResult, Error>> + Send;
// Required method
fn set(&self, value: OptOutPreference) -> Self::SetResponseFut;
}