[][src]Struct guile_sys::scm_i_thread

#[repr(C)]
pub struct scm_i_thread { pub next_thread: *mut scm_i_thread, pub handle: SCM, pub pthread: pthread_t, pub result: SCM, pub exited: c_int, pub guile_mode: c_int, pub needs_unregister: c_int, pub wake: *mut scm_thread_wake_data, pub sleep_cond: pthread_cond_t, pub sleep_pipe: [c_int; 2], pub freelists: *mut *mut c_void, pub pointerless_freelists: *mut *mut c_void, pub dynamic_state: *mut scm_t_dynamic_state, pub dynstack: scm_t_dynstack, pub pending_asyncs: SCM, pub block_asyncs: c_uint, pub continuation_root: SCM, pub continuation_base: *mut SCM_STACKITEM, pub vp: *mut scm_vm, pub base: *mut SCM_STACKITEM, pub regs: scm_i_jmp_buf, }

Fields

next_thread: *mut scm_i_threadhandle: SCMpthread: pthread_tresult: SCMexited: c_intguile_mode: c_intneeds_unregister: c_intwake: *mut scm_thread_wake_datasleep_cond: pthread_cond_tsleep_pipe: [c_int; 2]freelists: *mut *mut c_voidpointerless_freelists: *mut *mut c_voiddynamic_state: *mut scm_t_dynamic_statedynstack: scm_t_dynstackpending_asyncs: SCMblock_asyncs: c_uintcontinuation_root: SCMcontinuation_base: *mut SCM_STACKITEMvp: *mut scm_vmbase: *mut SCM_STACKITEMregs: scm_i_jmp_buf

Trait Implementations

impl Copy for scm_i_thread[src]

impl Clone for scm_i_thread[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for scm_i_thread

impl !Sync for scm_i_thread

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]