pub trait NightModeProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<NightModeSettings, Error>> + Send;
type SetResponseFut: Future<Output = Result<NightModeSetResult, Error>> + Send;
// Required methods
fn watch(&self) -> Self::WatchResponseFut;
fn set(&self, settings: &NightModeSettings) -> Self::SetResponseFut;
}