#[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 __bindgen_padding_0: [u8; 4],
pub __prev: *mut _pthread_cleanup_buffer,
}Fields§
§__routine: Option<unsafe extern "C" fn(arg1: *mut c_void)>§__arg: *mut c_void§__canceltype: c_int§__bindgen_padding_0: [u8; 4]§__prev: *mut _pthread_cleanup_bufferTrait Implementations§
Source§impl Clone for _pthread_cleanup_buffer
impl Clone for _pthread_cleanup_buffer
Source§fn clone(&self) -> _pthread_cleanup_buffer
fn clone(&self) -> _pthread_cleanup_buffer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for _pthread_cleanup_buffer
impl Debug for _pthread_cleanup_buffer
Source§impl Default for _pthread_cleanup_buffer
impl Default for _pthread_cleanup_buffer
Source§impl Hash for _pthread_cleanup_buffer
impl Hash for _pthread_cleanup_buffer
Source§impl Ord for _pthread_cleanup_buffer
impl Ord for _pthread_cleanup_buffer
Source§fn cmp(&self, other: &_pthread_cleanup_buffer) -> Ordering
fn cmp(&self, other: &_pthread_cleanup_buffer) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _pthread_cleanup_buffer
impl PartialEq for _pthread_cleanup_buffer
Source§fn eq(&self, other: &_pthread_cleanup_buffer) -> bool
fn eq(&self, other: &_pthread_cleanup_buffer) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for _pthread_cleanup_buffer
impl PartialOrd for _pthread_cleanup_buffer
impl Copy for _pthread_cleanup_buffer
impl Eq for _pthread_cleanup_buffer
impl StructuralPartialEq for _pthread_cleanup_buffer
Auto Trait Implementations§
impl Freeze for _pthread_cleanup_buffer
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 UnsafeUnpin for _pthread_cleanup_buffer
impl UnwindSafe for _pthread_cleanup_buffer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more