pub struct Coff<'a> {
pub header: CoffHeader,
pub sections: Vec<SectionTable>,
pub symbols: SymbolTable<'a>,
pub strings: Strtab<'a>,
}
Expand description
An analyzed COFF object
Fields§
§header: CoffHeader
The COFF header
sections: Vec<SectionTable>
A list of the sections in this COFF binary
symbols: SymbolTable<'a>
The COFF symbol table.
strings: Strtab<'a>
The string table.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Coff<'a>
impl<'a> RefUnwindSafe for Coff<'a>
impl<'a> Send for Coff<'a>
impl<'a> Sync for Coff<'a>
impl<'a> Unpin for Coff<'a>
impl<'a> UnwindSafe for Coff<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more