Struct python3_sys::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

Trait Implementations

impl Copy for PyObjectArenaAllocator
[src]

impl Clone for PyObjectArenaAllocator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PyObjectArenaAllocator
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations