Skip to main content

ThreadGet

Trait ThreadGet 

Source
pub trait ThreadGet: Sync + Send {
    // Required method
    fn thread_get(
        &self,
        request: GetRequest<Thread>,
    ) -> impl Future<Output = Result<GetResponse<Thread>>> + Send;
}

Required Methods§

Source

fn thread_get( &self, request: GetRequest<Thread>, ) -> impl Future<Output = Result<GetResponse<Thread>>> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§