pub struct StatusFlags {
pub carry: bool,
pub zero: bool,
pub interrupt: bool,
pub decimal: bool,
pub brk: bool,
pub ignored: bool,
pub overflow: bool,
pub negative: bool,
}Fields§
§carry: bool§zero: bool§interrupt: bool§decimal: bool§brk: bool§ignored: bool§overflow: bool§negative: boolImplementations§
Trait Implementations§
Source§impl Debug for StatusFlags
impl Debug for StatusFlags
Auto Trait Implementations§
impl Freeze for StatusFlags
impl RefUnwindSafe for StatusFlags
impl Send for StatusFlags
impl Sync for StatusFlags
impl Unpin for StatusFlags
impl UnsafeUnpin for StatusFlags
impl UnwindSafe for StatusFlags
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