pub trait RawFederationApiWithRequestHookExtwhere
Self: Sized,{
// Required method
fn with_request_hook(
self,
hook: &ApiRequestHook,
) -> RawFederationApiWithRequestHook;
}
Expand description
Convenience extension trait used for wrapping IRawFederationApi
in
a RawFederationApiWithRequestHook
Required Methods§
fn with_request_hook( self, hook: &ApiRequestHook, ) -> RawFederationApiWithRequestHook
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.