pub trait DeprecatedClientProxyInterface: Send + Sync {
    type StatusResponseFut: Future<Output = Result<WlanStatus, Error>> + Send;

    // Required method
    fn status(&self) -> Self::StatusResponseFut;
}

Required Associated Types§

Required Methods§

source

fn status(&self) -> Self::StatusResponseFut

Implementors§