pub(crate) struct CoffCommon<'data, R: ReadRef<'data>, Coff: CoffHeader = ImageFileHeader> {
pub(crate) sections: SectionTable<'data>,
pub(crate) symbols: SymbolTable<'data, R, Coff>,
pub(crate) image_base: u64,
}
Expand description
The common parts of PeFile
and CoffFile
.
Fields§
§sections: SectionTable<'data>
§symbols: SymbolTable<'data, R, Coff>
§image_base: u64
Trait Implementations§
Auto Trait Implementations§
impl<'data, R, Coff> Freeze for CoffCommon<'data, R, Coff>where
R: Freeze,
impl<'data, R, Coff> RefUnwindSafe for CoffCommon<'data, R, Coff>
impl<'data, R, Coff> Send for CoffCommon<'data, R, Coff>
impl<'data, R, Coff> Sync for CoffCommon<'data, R, Coff>
impl<'data, R, Coff> Unpin for CoffCommon<'data, R, Coff>where
R: Unpin,
impl<'data, R, Coff> UnwindSafe for CoffCommon<'data, R, Coff>
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