Enum pdb_addr2line::Error [−][src]
#[non_exhaustive]
pub enum Error {
Show 17 variants
FormatError(Error),
PdbError(Error),
ArgumentTypeNotArgumentList,
FunctionIdIsNotProcedureType,
MemberFunctionIdIsNotMemberFunctionType,
UnorderedSectionContributions(u16, u16),
OverlappingSectionContributions(u16, u16, u16),
ProcedureLinesUnsuccessful,
ProcedureInlineRangesUnsuccessful,
ExtendedModuleInfoUnsuccessful,
CantResolveCrossModuleRefWithoutStringTable,
ModuleImportsUnsuccessful,
ModuleNameNotFound(String),
ModuleExportsUnsuccessful,
LocalIndexNotInExports(u32),
OutOfRangeModuleIndex(u16),
ModuleInfoNotFound(u16),
}Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FormatError(Error)Tuple Fields of FormatError
0: ErrorPdbError(Error)Tuple Fields of PdbError
0: ErrorModuleNameNotFound(String)Tuple Fields of ModuleNameNotFound
0: StringLocalIndexNotInExports(u32)Tuple Fields of LocalIndexNotInExports
0: u32OutOfRangeModuleIndex(u16)Tuple Fields of OutOfRangeModuleIndex
0: u16ModuleInfoNotFound(u16)Tuple Fields of ModuleInfoNotFound
0: u16