pub fn extract_request_true_client_ip<B>(
request: &Request<B>,
) -> Result<Option<IpAddr>, Error>Expand description
Extract True-Client-IP from a complete request.
This reads request.headers() and delegates to
extract_header_true_client_ip, preserving its missing and strict error
behavior. The returned assertion remains raw and untrusted.