pub struct BinaryImage<F: FileContents + 'static> { /* private fields */ }Implementations§
Source§impl<F: FileContents + 'static> BinaryImage<F>
impl<F: FileContents + 'static> BinaryImage<F>
pub fn library_info(&self) -> LibraryInfo
pub fn debug_name(&self) -> Option<&str>
pub fn debug_id(&self) -> Option<DebugId>
pub fn debug_path(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
pub fn code_id(&self) -> Option<CodeId>
pub fn path(&self) -> Option<&str>
pub fn arch(&self) -> Option<&str>
pub fn make_object( &self, ) -> Option<File<'_, RangeReadRef<'_, &FileContentsWrapper<F>>>>
pub fn read_bytes_at_relative_address( &self, start_address: u32, size: u32, ) -> Result<&[u8], CodeByteReadingError>
Auto Trait Implementations§
impl<F> Freeze for BinaryImage<F>where
F: Freeze,
impl<F> RefUnwindSafe for BinaryImage<F>where
F: RefUnwindSafe,
impl<F> Send for BinaryImage<F>
impl<F> Sync for BinaryImage<F>
impl<F> Unpin for BinaryImage<F>where
F: Unpin,
impl<F> UnwindSafe for BinaryImage<F>where
F: UnwindSafe,
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