pub struct AllocHistory {
pub ops: Vec<HeapOp>,
}Expand description
History of operations for one allocation.
Fields§
§ops: Vec<HeapOp>Trait Implementations§
Source§impl Clone for AllocHistory
impl Clone for AllocHistory
Source§fn clone(&self) -> AllocHistory
fn clone(&self) -> AllocHistory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AllocHistory
impl Debug for AllocHistory
Source§impl Default for AllocHistory
impl Default for AllocHistory
Source§fn default() -> AllocHistory
fn default() -> AllocHistory
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AllocHistory
impl RefUnwindSafe for AllocHistory
impl Send for AllocHistory
impl Sync for AllocHistory
impl Unpin for AllocHistory
impl UnsafeUnpin for AllocHistory
impl UnwindSafe for AllocHistory
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