#[repr(C)]pub struct PyMemAllocatorEx {
pub ctx: *mut c_void,
pub malloc: Option<extern "C" fn(ctx: *mut c_void, size: size_t) -> *mut c_void>,
pub calloc: Option<extern "C" fn(ctx: *mut c_void, nelem: size_t, elsize: size_t) -> *mut c_void>,
pub realloc: Option<extern "C" fn(ctx: *mut c_void, ptr: *mut c_void, new_size: size_t) -> *mut c_void>,
pub free: Option<extern "C" fn(ctx: *mut c_void, ptr: *mut c_void)>,
}
Available on non-
Py_LIMITED_API
and neither PyPy
nor GraalPy
only.Fields§
§ctx: *mut c_void
§malloc: Option<extern "C" fn(ctx: *mut c_void, size: size_t) -> *mut c_void>
§calloc: Option<extern "C" fn(ctx: *mut c_void, nelem: size_t, elsize: size_t) -> *mut c_void>
§realloc: Option<extern "C" fn(ctx: *mut c_void, ptr: *mut c_void, new_size: size_t) -> *mut c_void>
§free: Option<extern "C" fn(ctx: *mut c_void, ptr: *mut c_void)>
Trait Implementations§
Source§impl Clone for PyMemAllocatorEx
impl Clone for PyMemAllocatorEx
Source§fn clone(&self) -> PyMemAllocatorEx
fn clone(&self) -> PyMemAllocatorEx
Returns a copy 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 moreimpl Copy for PyMemAllocatorEx
Auto Trait Implementations§
impl Freeze for PyMemAllocatorEx
impl RefUnwindSafe for PyMemAllocatorEx
impl !Send for PyMemAllocatorEx
impl !Sync for PyMemAllocatorEx
impl Unpin for PyMemAllocatorEx
impl UnwindSafe for PyMemAllocatorEx
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)