pub trait ResponseExt { // Required method fn uri(&self) -> Option<&Uri>; }
Extension trait for http::Response objects
Provides methods to extract URI information from HTTP responses
Returns a reference to the Uri associated with this response, if available.
Uri