Struct pyo3_ffi::PyMemAllocatorEx
source · [−]#[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)>,
}
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
sourceimpl Clone for PyMemAllocatorEx
impl Clone for PyMemAllocatorEx
sourcefn clone(&self) -> PyMemAllocatorEx
fn clone(&self) -> PyMemAllocatorEx
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for PyMemAllocatorEx
Auto Trait Implementations
impl RefUnwindSafe for PyMemAllocatorEx
impl !Send for PyMemAllocatorEx
impl !Sync for PyMemAllocatorEx
impl Unpin for PyMemAllocatorEx
impl UnwindSafe for PyMemAllocatorEx
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more