pub trait ServerContext: Send + Sync + 'static { }
Expand description

Endpoint-accessible context associated with a server.

Automatically implemented for all Send + Sync types.

Implementors§

source§

impl<T> ServerContext for T
where T: Send + Sync + 'static,