(
&self,
py: Python<'py>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
| 116 | /// Make a TRACE request to the given URL. |
| 117 | #[pyo3(signature = (url, **kwds))] |
| 118 | pub fn trace<'py>( |
| 119 | &self, |
| 120 | py: Python<'py>, |
| 121 | url: PyBackedStr, |
| 122 | kwds: Option<RequestParams>, |
| 123 | ) -> PyResult<Bound<'py, PyAny>> { |
| 124 | self.request(py, Method::TRACE, url, kwds) |
| 125 | } |
| 126 | |
| 127 | /// Make a request with the given method and URL. |
| 128 | #[pyo3(signature = (method, url, **kwds))] |