#[repr(C)]pub struct MemoryContextCallback {
pub func: MemoryContextCallbackFunction,
pub arg: *mut c_void,
pub next: *mut MemoryContextCallback,
}
Fields§
§func: MemoryContextCallbackFunction
§arg: *mut c_void
§next: *mut MemoryContextCallback
Trait Implementations§
Source§impl Clone for MemoryContextCallback
impl Clone for MemoryContextCallback
Source§fn clone(&self) -> MemoryContextCallback
fn clone(&self) -> MemoryContextCallback
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 MemoryContextCallback
impl Debug for MemoryContextCallback
Source§impl Default for MemoryContextCallback
impl Default for MemoryContextCallback
impl Copy for MemoryContextCallback
Auto Trait Implementations§
impl Freeze for MemoryContextCallback
impl RefUnwindSafe for MemoryContextCallback
impl !Send for MemoryContextCallback
impl !Sync for MemoryContextCallback
impl Unpin for MemoryContextCallback
impl UnwindSafe for MemoryContextCallback
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