fidl_fuchsia_diagnostics

Trait LogSettingsProxyInterface

Source
pub trait LogSettingsProxyInterface: Send + Sync {
    type SetInterestResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required methods
    fn register_interest(
        &self,
        selectors: &[LogInterestSelector],
    ) -> Result<(), Error>;
    fn set_interest(
        &self,
        selectors: &[LogInterestSelector],
    ) -> Self::SetInterestResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn register_interest( &self, selectors: &[LogInterestSelector], ) -> Result<(), Error>

Source

fn set_interest( &self, selectors: &[LogInterestSelector], ) -> Self::SetInterestResponseFut

Implementors§