#[repr(C)]pub struct environmentCleanupFunction {
pub name: *const c_char,
pub func: Option<unsafe extern "C" fn(arg1: *mut Environment)>,
pub priority: c_int,
pub next: *mut environmentCleanupFunction,
}Fields§
§name: *const c_char§func: Option<unsafe extern "C" fn(arg1: *mut Environment)>§priority: c_int§next: *mut environmentCleanupFunctionTrait Implementations§
Source§impl Clone for environmentCleanupFunction
impl Clone for environmentCleanupFunction
Source§fn clone(&self) -> environmentCleanupFunction
fn clone(&self) -> environmentCleanupFunction
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 environmentCleanupFunction
impl Debug for environmentCleanupFunction
Source§impl Default for environmentCleanupFunction
impl Default for environmentCleanupFunction
impl Copy for environmentCleanupFunction
Auto Trait Implementations§
impl Freeze for environmentCleanupFunction
impl RefUnwindSafe for environmentCleanupFunction
impl !Send for environmentCleanupFunction
impl !Sync for environmentCleanupFunction
impl Unpin for environmentCleanupFunction
impl UnwindSafe for environmentCleanupFunction
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