#[repr(C)]pub struct jl_gc_mark_cache_t {
pub perm_scanned_bytes: usize,
pub scanned_bytes: usize,
pub nbig_obj: usize,
pub big_obj: [*mut c_void; 1024],
}Fields§
§perm_scanned_bytes: usize§scanned_bytes: usize§nbig_obj: usize§big_obj: [*mut c_void; 1024]Trait Implementations§
Source§impl Clone for jl_gc_mark_cache_t
impl Clone for jl_gc_mark_cache_t
Source§fn clone(&self) -> jl_gc_mark_cache_t
fn clone(&self) -> jl_gc_mark_cache_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_gc_mark_cache_t
Auto Trait Implementations§
impl Freeze for jl_gc_mark_cache_t
impl RefUnwindSafe for jl_gc_mark_cache_t
impl !Send for jl_gc_mark_cache_t
impl !Sync for jl_gc_mark_cache_t
impl Unpin for jl_gc_mark_cache_t
impl UnwindSafe for jl_gc_mark_cache_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