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