fidl_fuchsia_settings

Trait SetupProxyInterface

Source
pub trait SetupProxyInterface: Send + Sync {
    type WatchResponseFut: Future<Output = Result<SetupSettings, Error>> + Send;
    type SetResponseFut: Future<Output = Result<SetupSetResult, Error>> + Send;

    // Required methods
    fn watch(&self) -> Self::WatchResponseFut;
    fn set(
        &self,
        settings: &SetupSettings,
        reboot_device: bool,
    ) -> Self::SetResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn watch(&self) -> Self::WatchResponseFut

Source

fn set( &self, settings: &SetupSettings, reboot_device: bool, ) -> Self::SetResponseFut

Implementors§