pub trait HeapVisitor<VisitorName, T: Deref<Target = *mut mi_heap_t>> where
    Self: Sized
{ fn visitor(
        &mut self,
        heap: &mi_heap_t,
        area: &mi_heap_area_t,
        block: *mut c_void,
        size: usize
    ) -> bool; fn visit(&mut self, heap: &MiMallocHeap<T>) { ... } }
Expand description

A custom function which visits the Heap

Required Methods

Provided Methods

Implementors