1/// The file path and the build ID of a DSO.
2#[derive(Debug, Clone, PartialEq, Eq, Hash)]
3pub struct DsoInfo {
4/// The file path. Can be an absolute path or a special string
5 /// of various forms, e.g. `[vdso]`.
6pub path: Vec<u8>,
7/// The build ID.
8pub build_id: Vec<u8>,
9}