pub trait ClientRequestIdSupport<'a> {
    type O;

    fn with_client_request_id(self, client_request_id: &'a str) -> Self::O;
}

Required Associated Types

Required Methods

Implementors