MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyAsyncMethods

Class PyAsyncMethods

python3-sys/src/object.rs:331–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected