Struct libil2cpp::raw::Il2CppMemoryCallbacks
source · [−]#[repr(C)]pub struct Il2CppMemoryCallbacks {
pub malloc_func: Option<unsafe extern "C" fn(size: size_t) -> *mut c_void>,
pub aligned_malloc_func: Option<unsafe extern "C" fn(size: size_t, alignment: size_t) -> *mut c_void>,
pub free_func: Option<unsafe extern "C" fn(ptr: *mut c_void)>,
pub aligned_free_func: Option<unsafe extern "C" fn(ptr: *mut c_void)>,
pub calloc_func: Option<unsafe extern "C" fn(nmemb: size_t, size: size_t) -> *mut c_void>,
pub realloc_func: Option<unsafe extern "C" fn(ptr: *mut c_void, size: size_t) -> *mut c_void>,
pub aligned_realloc_func: Option<unsafe extern "C" fn(ptr: *mut c_void, size: size_t, alignment: size_t) -> *mut c_void>,
}
Fields
malloc_func: Option<unsafe extern "C" fn(size: size_t) -> *mut c_void>
aligned_malloc_func: Option<unsafe extern "C" fn(size: size_t, alignment: size_t) -> *mut c_void>
free_func: Option<unsafe extern "C" fn(ptr: *mut c_void)>
aligned_free_func: Option<unsafe extern "C" fn(ptr: *mut c_void)>
calloc_func: Option<unsafe extern "C" fn(nmemb: size_t, size: size_t) -> *mut c_void>
realloc_func: Option<unsafe extern "C" fn(ptr: *mut c_void, size: size_t) -> *mut c_void>
aligned_realloc_func: Option<unsafe extern "C" fn(ptr: *mut c_void, size: size_t, alignment: size_t) -> *mut c_void>
Trait Implementations
sourceimpl Clone for Il2CppMemoryCallbacks
impl Clone for Il2CppMemoryCallbacks
sourcefn clone(&self) -> Il2CppMemoryCallbacks
fn clone(&self) -> Il2CppMemoryCallbacks
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
sourceimpl Debug for Il2CppMemoryCallbacks
impl Debug for Il2CppMemoryCallbacks
impl Copy for Il2CppMemoryCallbacks
Auto Trait Implementations
impl RefUnwindSafe for Il2CppMemoryCallbacks
impl Send for Il2CppMemoryCallbacks
impl Sync for Il2CppMemoryCallbacks
impl Unpin for Il2CppMemoryCallbacks
impl UnwindSafe for Il2CppMemoryCallbacks
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more