pub trait ClientRawFederationApiExtwhere
Self: Sized,{
// Required method
fn with_client_ext(
self,
db: Database,
log_ordering_wakeup_tx: Sender<()>,
) -> ClientRawFederationApi<Self>;
}
Expand description
Convenience extension trait used for wrapping IRawFederationApi
in
a ClientRawFederationApi
Required Methods§
fn with_client_ext( self, db: Database, log_ordering_wakeup_tx: Sender<()>, ) -> ClientRawFederationApi<Self>
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.