blob: 80e77d5bb0295659f701fc9aedb59b039dc199ae (
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, Eq)]
pub struct AppMemory {
pub ptr: usize,
pub length: usize,
}
pub type AppMemoryList = Vec<AppMemory>;
|