parse dwarf

This commit is contained in:
Jean-Marie Mineau 2024-07-08 15:39:36 +02:00
parent 437ecbeecc
commit 55b4ef015b
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
2 changed files with 420 additions and 1 deletions

View file

@ -17,6 +17,7 @@ pub enum Error {
DeserializationError(String),
InvalidStringEncoding(String),
InconsistantStruct(String),
OutOfBound(String),
}
pub type Result<T> = core::result::Result<T, Error>;