A set of samples of program counters that have been collected over time.
| 138 | |
| 139 | /// A set of samples of program counters that have been collected over time. |
| 140 | pub struct Samples { |
| 141 | data: Vec<u8>, |
| 142 | samples: u32, |
| 143 | } |
| 144 | |
| 145 | impl Samples { |
| 146 | /// Adds a new program counter to this sample. |