pub trait MakeRequestId:
Send
+ Sync
+ 'static {
// Required method
fn make_request_id<B>(&self, request: &Request<B>) -> Option<RequestId>;
}
Expand description
Trait for producing RequestId
s.
Used by SetRequestId
.
Required Methods§
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.