We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d51a02a + 704127c commit ecb2c99Copy full SHA for ecb2c99
src/image/image.rs
@@ -227,6 +227,7 @@ impl Drop for BoxedCallback {
227
228
/// An Image defines the memory image that was traced as a collection
229
/// of file sections and the virtual addresses at which those sections were loaded.
230
+#[derive(Debug)]
231
pub struct Image<'a> {
232
// the wrapped inst
233
pub(crate) inner: &'a mut pt_image,
src/image/iscache.rs
@@ -81,6 +81,7 @@ mod test {
81
}
82
83
/// A cache of traced image sections.
84
85
pub struct SectionCache<'a>(pub(crate) &'a mut pt_image_section_cache);
86
impl<'a> SectionCache<'a> {
87
/// Allocate a traced memory image section cache.
0 commit comments