binaryninja::binary_view::memory_map

Struct MemoryMap

source
pub struct MemoryMap { /* private fields */ }

Implementations§

source§

impl MemoryMap

source

pub fn new(view: Ref<BinaryView>) -> Self

source

pub fn base_description(&self) -> String

JSON string representation of the base MemoryMap, consisting of unresolved auto and user segments.

source

pub fn description(&self) -> String

JSON string representation of the MemoryMap.

source

pub fn set_logical_enabled(&mut self, enabled: bool)

source

pub fn add_binary_memory_region( &mut self, name: impl BnStrCompatible, start: u64, view: &BinaryView, segment_flags: Option<SegmentFlags>, ) -> bool

source

pub fn add_data_memory_region( &mut self, name: impl BnStrCompatible, start: u64, data: &DataBuffer, segment_flags: Option<SegmentFlags>, ) -> bool

source

pub fn add_remote_memory_region( &mut self, name: impl BnStrCompatible, start: u64, accessor: &mut FileAccessor<'_>, segment_flags: Option<SegmentFlags>, ) -> bool

source

pub fn remove_memory_region(&mut self, name: impl BnStrCompatible) -> bool

source

pub fn active_memory_region_at(&self, addr: u64) -> BnString

source

pub fn memory_region_flags(&self, name: impl BnStrCompatible) -> SegmentFlags

source

pub fn set_memory_region_flags( &mut self, name: impl BnStrCompatible, flags: SegmentFlags, ) -> bool

source

pub fn is_memory_region_enabled(&self, name: impl BnStrCompatible) -> bool

source

pub fn set_memory_region_enabled( &mut self, name: impl BnStrCompatible, enabled: bool, ) -> bool

source

pub fn is_memory_region_rebaseable(&self, name: impl BnStrCompatible) -> bool

source

pub fn set_memory_region_rebaseable( &mut self, name: impl BnStrCompatible, enabled: bool, ) -> bool

source

pub fn memory_region_fill(&self, name: impl BnStrCompatible) -> u8

source

pub fn set_memory_region_fill( &mut self, name: impl BnStrCompatible, fill: u8, ) -> bool

source

pub fn reset(&mut self)

Trait Implementations§

source§

impl Hash for MemoryMap

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for MemoryMap

source§

fn eq(&self, other: &MemoryMap) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for MemoryMap

source§

impl StructuralPartialEq for MemoryMap

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.