pub trait FactoryResetProxyInterface: Send + Sync {
    type GetEnabledResponseFut: Future<Output = Result<bool, Error>> + Send;

    // Required method
    fn get_enabled(&self) -> Self::GetEnabledResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§