summaryrefslogtreecommitdiffstats
path: root/third_party/rust/minidump_writer_linux/src/app_memory.rs
blob: dfffdfa343e3781308abf61308bb14da1ecbfab2 (plain)
1
2
3
4
5
6
7
8
9
// These entries store a list of memory regions that the client wants included
// in the minidump.
#[derive(Debug, Default, PartialEq)]
pub struct AppMemory {
    pub ptr: usize,
    pub length: usize,
}

pub type AppMemoryList = Vec<AppMemory>;