Struct hirofa_quickjs_sys::JSMallocFunctions
source · #[repr(C)]pub struct JSMallocFunctions {
pub js_malloc: Option<unsafe extern "C" fn(s: *mut JSMallocState, size: usize) -> *mut c_void>,
pub js_free: Option<unsafe extern "C" fn(s: *mut JSMallocState, ptr: *mut c_void)>,
pub js_realloc: Option<unsafe extern "C" fn(s: *mut JSMallocState, ptr: *mut c_void, size: usize) -> *mut c_void>,
pub js_malloc_usable_size: Option<unsafe extern "C" fn(ptr: *const c_void) -> usize>,
}
Fields§
§js_malloc: Option<unsafe extern "C" fn(s: *mut JSMallocState, size: usize) -> *mut c_void>
§js_free: Option<unsafe extern "C" fn(s: *mut JSMallocState, ptr: *mut c_void)>
§js_realloc: Option<unsafe extern "C" fn(s: *mut JSMallocState, ptr: *mut c_void, size: usize) -> *mut c_void>
§js_malloc_usable_size: Option<unsafe extern "C" fn(ptr: *const c_void) -> usize>
Trait Implementations§
source§impl Clone for JSMallocFunctions
impl Clone for JSMallocFunctions
source§fn clone(&self) -> JSMallocFunctions
fn clone(&self) -> JSMallocFunctions
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 moresource§impl Debug for JSMallocFunctions
impl Debug for JSMallocFunctions
impl Copy for JSMallocFunctions
Auto Trait Implementations§
impl Freeze for JSMallocFunctions
impl RefUnwindSafe for JSMallocFunctions
impl Send for JSMallocFunctions
impl Sync for JSMallocFunctions
impl Unpin for JSMallocFunctions
impl UnwindSafe for JSMallocFunctions
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)