Struct svmap::AddressVector
source · pub struct AddressVector<D: Clone> { /* private fields */ }
Expand description
Points to a byte (in a MemoryRegion
).
Implementations§
source§impl<D: Clone> AddressVector<D>
impl<D: Clone> AddressVector<D>
sourcepub fn address(&self) -> AddressType
pub fn address(&self) -> AddressType
Address pointed to by the AddressVector
.
sourcepub fn description(&self) -> D
pub fn description(&self) -> D
Description of the address pointed to by the AddressVector
.
Trait Implementations§
source§impl<D: PartialEq + Clone> PartialEq<AddressVector<D>> for AddressVector<D>
impl<D: PartialEq + Clone> PartialEq<AddressVector<D>> for AddressVector<D>
source§fn eq(&self, other: &AddressVector<D>) -> bool
fn eq(&self, other: &AddressVector<D>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<D: Eq + Clone> Eq for AddressVector<D>
impl<D: Clone> StructuralEq for AddressVector<D>
impl<D: Clone> StructuralPartialEq for AddressVector<D>
Auto Trait Implementations§
impl<D> RefUnwindSafe for AddressVector<D>where D: RefUnwindSafe,
impl<D> Send for AddressVector<D>where D: Send,
impl<D> Sync for AddressVector<D>where D: Sync,
impl<D> Unpin for AddressVector<D>where D: Unpin,
impl<D> UnwindSafe for AddressVector<D>where D: 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