pub struct DarwinPthreadHandlerRec { /* private fields */ }
Implementations§
Source§impl DarwinPthreadHandlerRec
impl DarwinPthreadHandlerRec
Sourcepub fn new_zeroed_on_heap() -> Self
pub fn new_zeroed_on_heap() -> Self
creates zeroed struct where the underlying c struct is on the heap
Sourcepub fn new_zeroed_on_stack() -> Self
pub fn new_zeroed_on_stack() -> Self
creates zeroed struct where the underlying c struct is on the stack (Use with care)
pub fn get_inner(&self) -> *mut __darwin_pthread_handler_rec
pub fn get_inner_mut(&self) -> &mut __darwin_pthread_handler_rec
pub fn get_inner_ref(&self) -> &__darwin_pthread_handler_rec
Trait Implementations§
Source§impl Clone for DarwinPthreadHandlerRec
impl Clone for DarwinPthreadHandlerRec
Source§fn clone(&self) -> DarwinPthreadHandlerRec
fn clone(&self) -> DarwinPthreadHandlerRec
Returns a copy of the value. Read more
1.0.0 · 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 DarwinPthreadHandlerRec
impl Debug for DarwinPthreadHandlerRec
Source§impl Deref for DarwinPthreadHandlerRec
impl Deref for DarwinPthreadHandlerRec
Source§impl From<&DarwinPthreadHandlerRec> for *mut __darwin_pthread_handler_rec
impl From<&DarwinPthreadHandlerRec> for *mut __darwin_pthread_handler_rec
Source§fn from(value: &DarwinPthreadHandlerRec) -> Self
fn from(value: &DarwinPthreadHandlerRec) -> Self
Converts to this type from the input type.
Source§impl From<*const __darwin_pthread_handler_rec> for DarwinPthreadHandlerRec
impl From<*const __darwin_pthread_handler_rec> for DarwinPthreadHandlerRec
Source§fn from(value: *const __darwin_pthread_handler_rec) -> Self
fn from(value: *const __darwin_pthread_handler_rec) -> Self
Converts to this type from the input type.
Source§impl From<*mut __darwin_pthread_handler_rec> for DarwinPthreadHandlerRec
impl From<*mut __darwin_pthread_handler_rec> for DarwinPthreadHandlerRec
Source§fn from(value: *mut __darwin_pthread_handler_rec) -> Self
fn from(value: *mut __darwin_pthread_handler_rec) -> Self
Converts to this type from the input type.
Source§impl From<DarwinPthreadHandlerRec> for *mut __darwin_pthread_handler_rec
impl From<DarwinPthreadHandlerRec> for *mut __darwin_pthread_handler_rec
Source§fn from(value: DarwinPthreadHandlerRec) -> Self
fn from(value: DarwinPthreadHandlerRec) -> Self
Converts to this type from the input type.
Source§impl From<DarwinPthreadHandlerRec> for __darwin_pthread_handler_rec
impl From<DarwinPthreadHandlerRec> for __darwin_pthread_handler_rec
Source§fn from(value: DarwinPthreadHandlerRec) -> Self
fn from(value: DarwinPthreadHandlerRec) -> Self
Converts to this type from the input type.
Source§impl From<__darwin_pthread_handler_rec> for DarwinPthreadHandlerRec
impl From<__darwin_pthread_handler_rec> for DarwinPthreadHandlerRec
Source§fn from(value: __darwin_pthread_handler_rec) -> Self
fn from(value: __darwin_pthread_handler_rec) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DarwinPthreadHandlerRec
impl !RefUnwindSafe for DarwinPthreadHandlerRec
impl !Send for DarwinPthreadHandlerRec
impl !Sync for DarwinPthreadHandlerRec
impl Unpin for DarwinPthreadHandlerRec
impl !UnwindSafe for DarwinPthreadHandlerRec
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