| 329 | #[derive(Copy)] |
| 330 | #[cfg(Py_3_5)] |
| 331 | pub struct PyAsyncMethods { |
| 332 | pub am_await: Option<crate::object::unaryfunc>, |
| 333 | pub am_aiter: Option<crate::object::unaryfunc>, |
| 334 | pub am_anext: Option<crate::object::unaryfunc>, |
| 335 | #[cfg(Py_3_10)] |
| 336 | pub am_send: Option<sendfunc>, |
| 337 | } |
| 338 | #[cfg(Py_3_5)] |
| 339 | impl Clone for PyAsyncMethods { |
| 340 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected