Enum arch_ops::w65::W65Address
source · [−]pub enum W65Address {
Absolute(Address),
Direct(Address),
Long(Address),
IndexedX(Box<W65Address>),
IndexedY(Box<W65Address>),
Indirect(Box<W65Address>),
IndirectLong(Box<W65Address>),
Stack {
off: i8,
},
}Variants
Absolute(Address)
Direct(Address)
Long(Address)
IndexedX(Box<W65Address>)
IndexedY(Box<W65Address>)
Indirect(Box<W65Address>)
IndirectLong(Box<W65Address>)
Stack
Fields
off: i8Trait Implementations
sourceimpl Clone for W65Address
impl Clone for W65Address
sourcefn clone(&self) -> W65Address
fn clone(&self) -> W65Address
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for W65Address
impl Debug for W65Address
sourceimpl Hash for W65Address
impl Hash for W65Address
sourceimpl PartialEq<W65Address> for W65Address
impl PartialEq<W65Address> for W65Address
sourcefn eq(&self, other: &W65Address) -> bool
fn eq(&self, other: &W65Address) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &W65Address) -> bool
fn ne(&self, other: &W65Address) -> bool
This method tests for !=.
impl Eq for W65Address
impl StructuralEq for W65Address
impl StructuralPartialEq for W65Address
Auto Trait Implementations
impl RefUnwindSafe for W65Address
impl Send for W65Address
impl Sync for W65Address
impl Unpin for W65Address
impl UnwindSafe for W65Address
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more