isr-pdb 0.5.0

PDB parser for ISR
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Errors surfaced while building a profile from a PDB file.
#[derive(thiserror::Error, Debug)]
pub enum Error {
    /// I/O error while reading the PDB file.
    #[error(transparent)]
    Io(#[from] std::io::Error),

    /// Error from the underlying PDB parser.
    #[error(transparent)]
    Pdb(#[from] pdb::Error),

    /// Failed to serialize the generated profile.
    #[error("serialization error: {0}")]
    Serialization(Box<dyn std::error::Error + Send + Sync>),
}