[][src]Struct object::read::coff::CoffFile

pub struct CoffFile<'data> { /* fields omitted */ }

A COFF object file.

Implementations

impl<'data> CoffFile<'data>[src]

pub fn parse(data: &'data [u8]) -> Result<Self>[src]

Parse the raw COFF file data.

Trait Implementations

impl<'data> Debug for CoffFile<'data>[src]

impl<'data, 'file> Object<'data, 'file> for CoffFile<'data> where
    'data: 'file, 
[src]

type Segment = CoffSegment<'data, 'file>

A segment in the object file.

type SegmentIterator = CoffSegmentIterator<'data, 'file>

An iterator over the segments in the object file.

type Section = CoffSection<'data, 'file>

A section in the object file.

type SectionIterator = CoffSectionIterator<'data, 'file>

An iterator over the sections in the object file.

type Comdat = CoffComdat<'data, 'file>

A COMDAT section group in the object file.

type ComdatIterator = CoffComdatIterator<'data, 'file>

An iterator over the COMDAT section groups in the object file.

type Symbol = CoffSymbol<'data, 'file>

A symbol in the object file.

type SymbolIterator = CoffSymbolIterator<'data, 'file>

An iterator over symbols in the object file.

type SymbolTable = CoffSymbolTable<'data, 'file>

A symbol table in the object file.

Auto Trait Implementations

impl<'data> RefUnwindSafe for CoffFile<'data>

impl<'data> Send for CoffFile<'data>

impl<'data> Sync for CoffFile<'data>

impl<'data> Unpin for CoffFile<'data>

impl<'data> UnwindSafe for CoffFile<'data>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.