/// The file path and the build ID of a DSO.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]pubstructDsoInfo{/// The file path. Can be an absolute path or a special string
/// of various forms, e.g. `[vdso]`.
pubpath:Vec<u8>,
/// The build ID.
pubbuild_id:Vec<u8>,
}