[][src]Struct jl_sys::_jl_task_t

#[repr(C)]pub struct _jl_task_t {
    pub next: *mut jl_value_t,
    pub queue: *mut jl_value_t,
    pub tls: *mut jl_value_t,
    pub state: *mut jl_sym_t,
    pub donenotify: *mut jl_value_t,
    pub result: *mut jl_value_t,
    pub exception: *mut jl_value_t,
    pub backtrace: *mut jl_value_t,
    pub logstate: *mut jl_value_t,
    pub start: *mut jl_function_t,
    pub sticky: u8,
    pub ctx: jl_ucontext_t,
    pub stkbuf: *mut c_void,
    pub bufsz: usize,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>,
    pub eh: *mut jl_handler_t,
    pub gcstack: *mut jl_gcframe_t,
    pub excstack: *mut jl_excstack_t,
    pub world_age: usize,
    pub tid: i16,
    pub prio: i16,
    pub locks: arraylist_t,
    pub timing_stack: *mut jl_timing_block_t,
}

Fields

next: *mut jl_value_tqueue: *mut jl_value_ttls: *mut jl_value_tstate: *mut jl_sym_tdonenotify: *mut jl_value_tresult: *mut jl_value_texception: *mut jl_value_tbacktrace: *mut jl_value_tlogstate: *mut jl_value_tstart: *mut jl_function_tsticky: u8ctx: jl_ucontext_tstkbuf: *mut c_voidbufsz: usize_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>eh: *mut jl_handler_tgcstack: *mut jl_gcframe_texcstack: *mut jl_excstack_tworld_age: usizetid: i16prio: i16locks: arraylist_ttiming_stack: *mut jl_timing_block_t

Implementations

impl _jl_task_t[src]

pub fn copy_stack(&self) -> c_uint[src]

pub fn set_copy_stack(&mut self, val: c_uint)[src]

pub fn started(&self) -> c_uint[src]

pub fn set_started(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    copy_stack: c_uint,
    started: c_uint
) -> __BindgenBitfieldUnit<[u8; 4], u32>
[src]

Trait Implementations

impl Clone for _jl_task_t[src]

impl Copy for _jl_task_t[src]

impl Debug for _jl_task_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.