(
&self,
py: Python<'py>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
| 105 | /// Make a OPTIONS request to the given URL. |
| 106 | #[pyo3(signature = (url, **kwds))] |
| 107 | pub fn options<'py>( |
| 108 | &self, |
| 109 | py: Python<'py>, |
| 110 | url: PyBackedStr, |
| 111 | kwds: Option<RequestParams>, |
| 112 | ) -> PyResult<Bound<'py, PyAny>> { |
| 113 | self.request(py, Method::OPTIONS, url, kwds) |
| 114 | } |
| 115 | |
| 116 | /// Make a TRACE request to the given URL. |
| 117 | #[pyo3(signature = (url, **kwds))] |