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

Class PyBufferProcs

python27-sys/src/object.rs:308–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306#[repr(C)]
307#[derive(Copy)]
308pub struct PyBufferProcs {
309 pub bf_getreadbuffer: Option<readbufferproc>,
310 pub bf_getwritebuffer: Option<writebufferproc>,
311 pub bf_getsegcount: Option<segcountproc>,
312 pub bf_getcharbuffer: Option<charbufferproc>,
313 pub bf_getbuffer: Option<getbufferproc>,
314 pub bf_releasebuffer: Option<releasebufferproc>,
315}
316
317impl Clone for PyBufferProcs {
318 #[inline]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected