Skip to main content

HubClientInfoSender

Trait HubClientInfoSender 

Source
pub trait HubClientInfoSender:
    Send
    + Sync
    + 'static {
    // Required method
    fn list(
        &self,
        query: PageQuery,
        context: RequestContext,
    ) -> impl Future<Output = Handled<Page<ClientInfo>>> + Send;
}
Available on crate feature server only.
Expand description

The hub side of the Hub Client Info module.

A configuration module: its requests carry no routing headers.

Spec: 2.3.0 §mod_hub_client_info_module

Required Methods§

Source

fn list( &self, query: PageQuery, context: RequestContext, ) -> impl Future<Output = Handled<Page<ClientInfo>>> + Send

GET {hubclientinfo} — one page of ClientInfo objects.

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§