Struct cyclors::thread_state1[][src]

#[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_tstate: thread_stategv: ddsrt_atomic_voidp_ttid: ddsrt_thread_tf: Option<unsafe extern "C" fn(arg: *mut c_void) -> u32>f_arg: *mut c_voidname: [c_char; 24]pad: __IncompleteArrayField<c_char>

Trait Implementations

impl Debug for thread_state1[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, 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.