#[repr(C)]
pub struct ThreadLocalRegion { pub msg_buffer: [u8; 256], pub disable_counter: u16, pub interrupt_flag: u16, pub reserved_1: [u8; 4], pub reserved_2: [u8; 120], pub tls: [u8; 80], pub locale_ptr: *mut u8, pub errno_val: i64, pub thread_data: [u8; 8], pub eh_globals: [u8; 8], pub thread_ptr: *mut u8, pub thread_ref: *mut Thread, }

Fields

msg_buffer: [u8; 256]disable_counter: u16interrupt_flag: u16reserved_1: [u8; 4]reserved_2: [u8; 120]tls: [u8; 80]locale_ptr: *mut u8errno_val: i64thread_data: [u8; 8]eh_globals: [u8; 8]thread_ptr: *mut u8thread_ref: *mut Thread

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.