Struct object::read::elf::ElfComdat[][src]

pub struct ElfComdat<'data, 'file, Elf, R = &'data [u8]> where
    Elf: FileHeader,
    R: ReadRef<'data>, 
{ /* fields omitted */ }

A COMDAT section group of an ElfFile.

Trait Implementations

impl<'data, 'file, Elf: Debug, R: Debug> Debug for ElfComdat<'data, 'file, Elf, R> where
    Elf: FileHeader,
    R: ReadRef<'data>,
    Elf::SectionHeader: Debug,
    Elf::Endian: Debug
[src]

impl<'data, 'file, Elf, R> ObjectComdat<'data> for ElfComdat<'data, 'file, Elf, R> where
    Elf: FileHeader,
    R: ReadRef<'data>, 
[src]

type SectionIterator = ElfComdatSectionIterator<'data, 'file, Elf, R>

An iterator over the sections in the object file.

Auto Trait Implementations

impl<'data, 'file, Elf, R> Send for ElfComdat<'data, 'file, Elf, R> where
    Elf: Sync,
    R: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync

impl<'data, 'file, Elf, R> Sync for ElfComdat<'data, 'file, Elf, R> where
    Elf: Sync,
    R: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync

impl<'data, 'file, Elf, R> Unpin for ElfComdat<'data, 'file, Elf, R> where
    'data: 'file, 

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.