Struct pyo3::ffi::PyObjectArenaAllocator [−][src]
#[repr(C)]pub struct PyObjectArenaAllocator {
pub ctx: *mut c_void,
pub alloc: Option<extern "C" fn(ctx: *mut c_void, size: size_t) -> *mut c_void>,
pub free: Option<extern "C" fn(ctx: *mut c_void, ptr: *mut c_void, size: size_t)>,
}
Fields
ctx: *mut c_void
alloc: Option<extern "C" fn(ctx: *mut c_void, size: size_t) -> *mut c_void>
free: Option<extern "C" fn(ctx: *mut c_void, ptr: *mut c_void, size: size_t)>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PyObjectArenaAllocator
impl !Send for PyObjectArenaAllocator
impl !Sync for PyObjectArenaAllocator
impl Unpin for PyObjectArenaAllocator
impl UnwindSafe for PyObjectArenaAllocator
Blanket Implementations
Mutably borrows from an owned value. Read more