pub trait OptOutAdminProxyInterface: Send + Sync {
    type SetResponseFut: Future<Output = Result<OptOutAdminSetResult, Error>> + Send;

    // Required method
    fn set(&self, value: OptOutPreference) -> Self::SetResponseFut;
}

Required Associated Types§

Required Methods§

source

fn set(&self, value: OptOutPreference) -> Self::SetResponseFut

Implementors§