pub struct ArchAndAddr {
pub arch: CoreArchitecture,
pub addr: u64,
}
Fields§
§arch: CoreArchitecture
§addr: u64
Implementations§
source§impl ArchAndAddr
impl ArchAndAddr
pub fn new(arch: CoreArchitecture, addr: u64) -> Self
source§impl ArchAndAddr
impl ArchAndAddr
pub fn into_raw(self) -> BNArchitectureAndAddress
Trait Implementations§
source§impl Clone for ArchAndAddr
impl Clone for ArchAndAddr
source§fn clone(&self) -> ArchAndAddr
fn clone(&self) -> ArchAndAddr
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ArchAndAddr
impl Debug for ArchAndAddr
source§impl From<BNArchitectureAndAddress> for ArchAndAddr
impl From<BNArchitectureAndAddress> for ArchAndAddr
source§fn from(raw: BNArchitectureAndAddress) -> Self
fn from(raw: BNArchitectureAndAddress) -> Self
Converts to this type from the input type.
source§impl Hash for ArchAndAddr
impl Hash for ArchAndAddr
source§impl PartialEq for ArchAndAddr
impl PartialEq for ArchAndAddr
impl Copy for ArchAndAddr
impl Eq for ArchAndAddr
impl StructuralPartialEq for ArchAndAddr
Auto Trait Implementations§
impl Freeze for ArchAndAddr
impl RefUnwindSafe for ArchAndAddr
impl Send for ArchAndAddr
impl Sync for ArchAndAddr
impl Unpin for ArchAndAddr
impl UnwindSafe for ArchAndAddr
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