#[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)>,
}Available on neither
PyPy nor GraalPy.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§
Source§impl Clone for PyObjectArenaAllocator
Available on non-Py_LIMITED_API only.
impl Clone for PyObjectArenaAllocator
Available on non-
Py_LIMITED_API only.Source§fn clone(&self) -> PyObjectArenaAllocator
fn clone(&self) -> PyObjectArenaAllocator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PyObjectArenaAllocator
Available on non-Py_LIMITED_API only.
impl Default for PyObjectArenaAllocator
Available on non-
Py_LIMITED_API only.impl Copy for PyObjectArenaAllocator
Available on non-
Py_LIMITED_API only.Auto Trait Implementations§
impl Freeze for PyObjectArenaAllocator
impl RefUnwindSafe for PyObjectArenaAllocator
impl !Send for PyObjectArenaAllocator
impl !Sync for PyObjectArenaAllocator
impl Unpin for PyObjectArenaAllocator
impl UnwindSafe for PyObjectArenaAllocator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more