pub trait RequesterProxyInterface: Send + Sync {
    type RequestResponseFut: Future<Output = Result<RequesterRequestResult, Error>> + Send;

    // Required method
    fn request(&self, mode: SystemMode, set: bool) -> Self::RequestResponseFut;
}

Required Associated Types§

Required Methods§

source

fn request(&self, mode: SystemMode, set: bool) -> Self::RequestResponseFut

Implementors§