[][src]Struct jl_sys::jl_thread_heap_t

#[repr(C)]pub struct jl_thread_heap_t {
    pub weak_refs: arraylist_t,
    pub live_tasks: 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],
    pub free_stacks: [arraylist_t; 16],
}

Fields

weak_refs: arraylist_tlive_tasks: arraylist_tmallocarrays: *mut _mallocarray_tmafreelist: *mut _mallocarray_tbig_objects: *mut _bigval_trem_bindings: arraylist_t_remset: [arraylist_t; 2]remset_nptr: c_intremset: *mut arraylist_tlast_remset: *mut arraylist_tnorm_pools: [jl_gc_pool_t; 41]free_stacks: [arraylist_t; 16]

Trait Implementations

impl Clone for jl_thread_heap_t[src]

impl Copy for jl_thread_heap_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.