Trait rama::http::layer::request_id::MakeRequestId

pub trait MakeRequestId: Send + Sync + 'static {
    // Required method
    fn make_request_id<B>(&self, request: &Request<B>) -> Option<RequestId>;
}
Expand description

Trait for producing RequestIds.

Used by SetRequestId.

Required Methods§

fn make_request_id<B>(&self, request: &Request<B>) -> Option<RequestId>

Try and produce a RequestId from the request.

Object Safety§

This trait is not object safe.

Implementors§