pub trait OptOutProxyInterface: Send + Sync {
    type GetResponseFut: Future<Output = Result<OptOutPreference, Error>> + Send;

    // Required method
    fn get(&self) -> Self::GetResponseFut;
}

Required Associated Types§

Required Methods§

source

fn get(&self) -> Self::GetResponseFut

Implementors§