linux_perf_data/
dso_info.rs

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]`.
6    pub path: Vec<u8>,
7    /// The build ID.
8    pub build_id: Vec<u8>,
9}