#[repr(C)]pub struct RcuAtFork {
pub before_fork: Option<unsafe extern "C" fn(priv_: *mut c_void)>,
pub after_fork_parent: Option<unsafe extern "C" fn(priv_: *mut c_void)>,
pub after_fork_child: Option<unsafe extern "C" fn(priv_: *mut c_void)>,
pub priv_: *mut c_void,
}Fields§
§before_fork: Option<unsafe extern "C" fn(priv_: *mut c_void)>§after_fork_parent: Option<unsafe extern "C" fn(priv_: *mut c_void)>§after_fork_child: Option<unsafe extern "C" fn(priv_: *mut c_void)>§priv_: *mut c_voidTrait Implementations§
Source§impl Clone for urcu_atfork
impl Clone for urcu_atfork
Source§fn clone(&self) -> urcu_atfork
fn clone(&self) -> urcu_atfork
Returns a duplicate 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 urcu_atfork
impl Debug for urcu_atfork
Source§impl Default for urcu_atfork
impl Default for urcu_atfork
impl Copy for urcu_atfork
Auto Trait Implementations§
impl Freeze for urcu_atfork
impl RefUnwindSafe for urcu_atfork
impl !Send for urcu_atfork
impl !Sync for urcu_atfork
impl Unpin for urcu_atfork
impl UnwindSafe for urcu_atfork
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