[][src]Struct cdds_util::thread_state_base

#[repr(C)]pub struct thread_state_base {
    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],
}

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]

Trait Implementations

impl Clone for thread_state_base[src]

impl Copy for thread_state_base[src]

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