Struct esp_idf_sys::_pthread_cleanup_context
source · [−]#[repr(C)]pub struct _pthread_cleanup_context {
pub _routine: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
pub _arg: *mut c_void,
pub _canceltype: c_int,
pub _previous: *mut _pthread_cleanup_context,
}
Fields
_routine: Option<unsafe extern "C" fn(arg1: *mut c_void)>
_arg: *mut c_void
_canceltype: c_int
_previous: *mut _pthread_cleanup_context
Trait Implementations
sourceimpl Clone for _pthread_cleanup_context
impl Clone for _pthread_cleanup_context
sourcefn clone(&self) -> _pthread_cleanup_context
fn clone(&self) -> _pthread_cleanup_context
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for _pthread_cleanup_context
impl Debug for _pthread_cleanup_context
sourceimpl Default for _pthread_cleanup_context
impl Default for _pthread_cleanup_context
impl Copy for _pthread_cleanup_context
Auto Trait Implementations
impl RefUnwindSafe for _pthread_cleanup_context
impl !Send for _pthread_cleanup_context
impl !Sync for _pthread_cleanup_context
impl Unpin for _pthread_cleanup_context
impl UnwindSafe for _pthread_cleanup_context
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more