#[repr(C)]pub struct thread_state1 {
pub vtime: ddsrt_atomic_uint32_t,
pub state: thread_state,
pub gv: ddsrt_atomic_voidp_t,
pub tid: ddsrt_thread_t,
pub f: Option<unsafe extern "C" fn(arg: *mut c_void) -> u32>,
pub f_arg: *mut c_void,
pub name: [c_char; 24],
pub pad: __IncompleteArrayField<c_char>,
}
Fields§
§vtime: ddsrt_atomic_uint32_t
§state: thread_state
§gv: ddsrt_atomic_voidp_t
§tid: ddsrt_thread_t
§f: Option<unsafe extern "C" fn(arg: *mut c_void) -> u32>
§f_arg: *mut c_void
§name: [c_char; 24]
§pad: __IncompleteArrayField<c_char>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for thread_state1
impl RefUnwindSafe for thread_state1
impl !Send for thread_state1
impl !Sync for thread_state1
impl Unpin for thread_state1
impl UnwindSafe for thread_state1
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