pub struct Section<'data, 'file, R: ReadRef<'data> = &'data [u8]>where
'data: 'file,{ /* private fields */ }
Expand description
A Section of a File
Trait Implementations§
source§impl<'data, 'file, R: ReadRef<'data>> ObjectSection<'data> for Section<'data, 'file, R>
impl<'data, 'file, R: ReadRef<'data>> ObjectSection<'data> for Section<'data, 'file, R>
§type RelocationIterator = SectionRelocationIterator<'data, 'file, R>
type RelocationIterator = SectionRelocationIterator<'data, 'file, R>
An iterator over the relocations for a section. Read more
source§fn index(&self) -> SectionIndex
fn index(&self) -> SectionIndex
Returns the section index.
source§fn file_range(&self) -> Option<(u64, u64)>
fn file_range(&self) -> Option<(u64, u64)>
Returns offset and size of on-disk segment (if any).
source§fn data_range(&self, address: u64, size: u64) -> Result<Option<&'data [u8]>>
fn data_range(&self, address: u64, size: u64) -> Result<Option<&'data [u8]>>
Return the raw contents of the section data in the given range. Read more
source§fn compressed_file_range(&self) -> Result<CompressedFileRange>
fn compressed_file_range(&self) -> Result<CompressedFileRange>
Returns the potentially compressed file range of the section,
along with information about the compression.
source§fn compressed_data(&self) -> Result<CompressedData<'data>>
fn compressed_data(&self) -> Result<CompressedData<'data>>
Returns the potentially compressed contents of the section,
along with information about the compression.
source§fn name_bytes(&self) -> Result<&[u8]>
fn name_bytes(&self) -> Result<&[u8]>
Returns the name of the section.
source§fn segment_name_bytes(&self) -> Result<Option<&[u8]>>
fn segment_name_bytes(&self) -> Result<Option<&[u8]>>
Returns the name of the segment for this section.
source§fn segment_name(&self) -> Result<Option<&str>>
fn segment_name(&self) -> Result<Option<&str>>
Returns the name of the segment for this section. Read more
source§fn kind(&self) -> SectionKind
fn kind(&self) -> SectionKind
Return the kind of this section.
source§fn relocations(&self) -> SectionRelocationIterator<'data, 'file, R> ⓘ
fn relocations(&self) -> SectionRelocationIterator<'data, 'file, R> ⓘ
Get the relocations for this section.
source§fn flags(&self) -> SectionFlags
fn flags(&self) -> SectionFlags
Section flags that are specific to each file format.
Auto Trait Implementations§
impl<'data, 'file, R> RefUnwindSafe for Section<'data, 'file, R>where R: RefUnwindSafe,
impl<'data, 'file, R> Send for Section<'data, 'file, R>where R: Sync,
impl<'data, 'file, R> Sync for Section<'data, 'file, R>where R: Sync,
impl<'data, 'file, R> Unpin for Section<'data, 'file, R>
impl<'data, 'file, R> UnwindSafe for Section<'data, 'file, R>where R: RefUnwindSafe,
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