#[repr(C)]pub struct jmpenv {
pub je_prev: *mut jmpenv,
pub je_buf: sigjmp_buf,
pub je_ret: c_int,
pub je_mustcatch: bool,
pub je_old_delaymagic: U16,
pub je_old_stack_hwm: isize,
}
Fields§
§je_prev: *mut jmpenv
§je_buf: sigjmp_buf
§je_ret: c_int
§je_mustcatch: bool
§je_old_delaymagic: U16
§je_old_stack_hwm: isize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for jmpenv
impl RefUnwindSafe for jmpenv
impl !Send for jmpenv
impl !Sync for jmpenv
impl Unpin for jmpenv
impl UnwindSafe for jmpenv
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