#[repr(C)]pub struct _jl_handler_t {
pub eh_ctx: sigjmp_buf,
pub gcstack: *mut jl_gcframe_t,
pub prev: *mut _jl_handler_t,
pub gc_state: i8,
pub locks_len: usize,
pub defer_signal: sig_atomic_t,
pub finalizers_inhibited: c_int,
pub timing_stack: *mut jl_timing_block_t,
pub world_age: usize,
}Fields§
§eh_ctx: sigjmp_buf§gcstack: *mut jl_gcframe_t§prev: *mut _jl_handler_t§gc_state: i8§locks_len: usize§defer_signal: sig_atomic_t§finalizers_inhibited: c_int§timing_stack: *mut jl_timing_block_t§world_age: usizeTrait Implementations§
Source§impl Clone for _jl_handler_t
impl Clone for _jl_handler_t
Source§fn clone(&self) -> _jl_handler_t
fn clone(&self) -> _jl_handler_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 moreSource§impl Debug for _jl_handler_t
impl Debug for _jl_handler_t
impl Copy for _jl_handler_t
Auto Trait Implementations§
impl Freeze for _jl_handler_t
impl RefUnwindSafe for _jl_handler_t
impl !Send for _jl_handler_t
impl !Sync for _jl_handler_t
impl Unpin for _jl_handler_t
impl UnwindSafe for _jl_handler_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