Skip to main content

ThreadProxyInterface

Trait ThreadProxyInterface 

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

    // Required method
    fn import_settings(
        &self,
        thread_settings_json: Buffer,
    ) -> Self::ImportSettingsResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn import_settings( &self, thread_settings_json: Buffer, ) -> Self::ImportSettingsResponseFut

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§