#[repr(C)]pub struct JSSharedArrayBufferFunctions {
    pub sab_alloc: Option<unsafe extern "C" fn(opaque: *mut c_void, size: usize) -> *mut c_void>,
    pub sab_free: Option<unsafe extern "C" fn(opaque: *mut c_void, ptr: *mut c_void)>,
    pub sab_dup: Option<unsafe extern "C" fn(opaque: *mut c_void, ptr: *mut c_void)>,
    pub sab_opaque: *mut c_void,
}Fields§
§sab_alloc: Option<unsafe extern "C" fn(opaque: *mut c_void, size: usize) -> *mut c_void>§sab_free: Option<unsafe extern "C" fn(opaque: *mut c_void, ptr: *mut c_void)>§sab_dup: Option<unsafe extern "C" fn(opaque: *mut c_void, ptr: *mut c_void)>§sab_opaque: *mut c_voidTrait Implementations§
Source§fn clone(&self) -> JSSharedArrayBufferFunctions
 
fn clone(&self) -> JSSharedArrayBufferFunctions
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 moreAuto Trait Implementations§
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