Struct python3_sys::PyObjectArenaAllocator [] [src]

pub struct PyObjectArenaAllocator {
    pub ctx: *mut c_void,
    pub alloc: Option<extern fn(ctx: *mut c_void, size: size_t) -> *mut c_void>,
    pub free: Option<extern fn(ctx: *mut c_void, ptr: *mut c_void, size: size_t)>,
}

Fields

ctx: *mut c_void alloc: Option<extern fn(ctx: *mut c_void, size: size_t) -> *mut c_void> free: Option<extern fn(ctx: *mut c_void, ptr: *mut c_void, size: size_t)>

Trait Implementations

impl Copy for PyObjectArenaAllocator
[src]

impl Clone for PyObjectArenaAllocator
[src]

fn clone(&self) -> Self

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Default for PyObjectArenaAllocator
[src]

fn default() -> Self

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