pub struct PeSegment<'data, 'file, Pe, R = &'data [u8]> where
Pe: ImageNtHeaders,
R: ReadRef<'data>, { /* private fields */ }
Expand description
A loadable section of a PeFile
.
Trait Implementations
sourceimpl<'data, 'file, Pe: Debug, R: Debug> Debug for PeSegment<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>,
impl<'data, 'file, Pe: Debug, R: Debug> Debug for PeSegment<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>,
sourceimpl<'data, 'file, Pe, R> ObjectSegment<'data> for PeSegment<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>,
impl<'data, 'file, Pe, R> ObjectSegment<'data> for PeSegment<'data, 'file, Pe, R> where
Pe: ImageNtHeaders,
R: ReadRef<'data>,
sourcefn data(&self) -> Result<&'data [u8]>
fn data(&self) -> Result<&'data [u8]>
Returns a reference to the file contents of the segment. Read more
sourcefn 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 segment data in the given range. Read more
sourcefn flags(&self) -> SegmentFlags
fn flags(&self) -> SegmentFlags
Return the flags of segment.
Auto Trait Implementations
impl<'data, 'file, Pe, R> RefUnwindSafe for PeSegment<'data, 'file, Pe, R> where
Pe: RefUnwindSafe,
R: RefUnwindSafe,
impl<'data, 'file, Pe, R> Send for PeSegment<'data, 'file, Pe, R> where
Pe: Sync,
R: Sync,
impl<'data, 'file, Pe, R> Sync for PeSegment<'data, 'file, Pe, R> where
Pe: Sync,
R: Sync,
impl<'data, 'file, Pe, R> Unpin for PeSegment<'data, 'file, Pe, R> where
'data: 'file,
impl<'data, 'file, Pe, R> UnwindSafe for PeSegment<'data, 'file, Pe, R> where
Pe: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more