#[repr(u16)]pub enum Flags {
Carry = 1,
Overflow = 2,
Zero = 4,
Negative = 8,
Extend = 16,
IntMask = 1_792,
Interrupt = 4_096,
Supervisor = 8_192,
Tracing = 32_768,
}
Variants§
Carry = 1
Overflow = 2
Zero = 4
Negative = 8
Extend = 16
IntMask = 1_792
Interrupt = 4_096
Supervisor = 8_192
Tracing = 32_768
Trait Implementations§
source§impl PartialEq for Flags
impl PartialEq for Flags
impl Copy for Flags
impl Eq for Flags
impl StructuralPartialEq for Flags
Auto Trait Implementations§
impl Freeze for Flags
impl RefUnwindSafe for Flags
impl Send for Flags
impl Sync for Flags
impl Unpin for Flags
impl UnwindSafe for Flags
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
source§impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
source§fn into_address(self) -> T
fn into_address(self) -> T
Translate the given address into an address of type
T