We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d6b932 commit 4a8353fCopy full SHA for 4a8353f
src/lib.rs
@@ -14,13 +14,14 @@ use std::collections::HashSet;
14
/// This trait is marked as `#[doc(hidden)]` because it's not intended to be used directly.
15
/// Instead, use the [`PointerPrint`] trait which provides a more user-friendly interface
16
pub trait DerefDebugPrint {
17
- fn pointer_debug_internal<M: ::memflow::mem::MemoryView>(
+ fn pointer_debug_internal<M>(
18
&self,
19
mem: &mut M,
20
depth: usize,
21
max_depth: usize,
22
visited_addresses: &mut ::std::collections::HashSet<u64>,
23
- );
+ ) where
24
+ M: memflow::mem::MemoryView;
25
}
26
27
/// High-level trait for printing data structures with automatic pointer dereferencing.
0 commit comments