[][src]Struct lc3tools_sys::root::_pthread_cleanup_buffer

#[repr(C)]pub struct _pthread_cleanup_buffer {
    pub __routine: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
    pub __arg: *mut c_void,
    pub __canceltype: c_int,
    pub __prev: *mut _pthread_cleanup_buffer,
}

Fields

__routine: Option<unsafe extern "C" fn(arg1: *mut c_void)>__arg: *mut c_void__canceltype: c_int__prev: *mut _pthread_cleanup_buffer

Trait Implementations

impl Clone for _pthread_cleanup_buffer[src]

impl Copy for _pthread_cleanup_buffer[src]

impl Debug for _pthread_cleanup_buffer[src]

impl Default for _pthread_cleanup_buffer[src]

Auto Trait Implementations

impl RefUnwindSafe for _pthread_cleanup_buffer

impl !Send for _pthread_cleanup_buffer

impl !Sync for _pthread_cleanup_buffer

impl Unpin for _pthread_cleanup_buffer

impl UnwindSafe for _pthread_cleanup_buffer

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.