#[repr(C)]pub struct jl_thread_heap_t {
pub weak_refs: arraylist_t,
pub mallocarrays: *mut _mallocarray_t,
pub mafreelist: *mut _mallocarray_t,
pub big_objects: *mut _bigval_t,
pub rem_bindings: arraylist_t,
pub _remset: [arraylist_t; 2],
pub remset_nptr: c_int,
pub remset: *mut arraylist_t,
pub last_remset: *mut arraylist_t,
pub norm_pools: [jl_gc_pool_t; 41],
}Fields§
§weak_refs: arraylist_t§mallocarrays: *mut _mallocarray_t§mafreelist: *mut _mallocarray_t§big_objects: *mut _bigval_t§rem_bindings: arraylist_t§_remset: [arraylist_t; 2]§remset_nptr: c_int§remset: *mut arraylist_t§last_remset: *mut arraylist_t§norm_pools: [jl_gc_pool_t; 41]Trait Implementations§
Source§impl Clone for jl_thread_heap_t
impl Clone for jl_thread_heap_t
Source§fn clone(&self) -> jl_thread_heap_t
fn clone(&self) -> jl_thread_heap_t
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 jl_thread_heap_t
Auto Trait Implementations§
impl Freeze for jl_thread_heap_t
impl RefUnwindSafe for jl_thread_heap_t
impl !Send for jl_thread_heap_t
impl !Sync for jl_thread_heap_t
impl Unpin for jl_thread_heap_t
impl UnwindSafe for jl_thread_heap_t
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