Struct jl_sys::bindings::_jl_task_t

source ·
#[repr(C)]
pub struct _jl_task_t {
Show 18 fields pub next: *mut jl_value_t, pub queue: *mut jl_value_t, pub tls: *mut jl_value_t, pub donenotify: *mut jl_value_t, pub result: *mut jl_value_t, pub logstate: *mut jl_value_t, pub start: *mut jl_function_t, pub rngState: [u64; 5], pub _state: AtomicU8, pub sticky: u8, pub _isexception: AtomicU8, pub priority: u16, pub tid: AtomicI16, pub threadpoolid: i8, pub reentrant_timing: u8, pub gcstack: *mut jl_gcframe_t, pub world_age: usize, pub ptls: jl_ptls_t,
}
Expand description

Fields§

§next: *mut jl_value_t§queue: *mut jl_value_t§tls: *mut jl_value_t§donenotify: *mut jl_value_t§result: *mut jl_value_t§logstate: *mut jl_value_t§start: *mut jl_function_t§rngState: [u64; 5]§_state: AtomicU8§sticky: u8§_isexception: AtomicU8§priority: u16§tid: AtomicI16§threadpoolid: i8§reentrant_timing: u8§gcstack: *mut jl_gcframe_t§world_age: usize§ptls: jl_ptls_t

Trait Implementations§

source§

impl Debug for _jl_task_t

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.