pub struct Location {
pub arch: Option<CoreArchitecture>,
pub addr: u64,
}
Expand description
Used to describe a location within a Function
.
Fields§
§arch: Option<CoreArchitecture>
§addr: u64
Trait Implementations§
source§impl From<(CoreArchitecture, u64)> for Location
impl From<(CoreArchitecture, u64)> for Location
source§fn from(loc: (CoreArchitecture, u64)) -> Self
fn from(loc: (CoreArchitecture, u64)) -> Self
Converts to this type from the input type.
source§impl From<BNArchitectureAndAddress> for Location
impl From<BNArchitectureAndAddress> for Location
source§fn from(value: BNArchitectureAndAddress) -> Self
fn from(value: BNArchitectureAndAddress) -> Self
Converts to this type from the input type.
source§impl From<Location> for BNArchitectureAndAddress
impl From<Location> for BNArchitectureAndAddress
impl Copy for Location
impl Eq for Location
impl StructuralPartialEq for Location
Auto Trait Implementations§
impl Freeze for Location
impl RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnwindSafe for Location
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