pub struct StatusRegister(/* private fields */);
Available on AArch64 only.
Expand description
FPSR
: Indicates non-trapped floating-point exceptions.
Implementations§
Source§impl StatusRegister
impl StatusRegister
Sourcepub fn exceptions(&self) -> Exceptions
pub fn exceptions(&self) -> Exceptions
Indicates any non-trapped exceptions that have been detected since these flags were last reset.
Sourcepub fn set_exceptions(&mut self, value: Exceptions)
pub fn set_exceptions(&mut self, value: Exceptions)
Indicates any non-trapped exceptions that have been detected since these flags were last reset.
Sourcepub fn with_exceptions(&self, value: Exceptions) -> Self
pub fn with_exceptions(&self, value: Exceptions) -> Self
Indicates any non-trapped exceptions that have been detected since these flags were last reset.
Trait Implementations§
Source§impl Bitfield<u64> for StatusRegister
impl Bitfield<u64> for StatusRegister
Source§impl Clone for StatusRegister
impl Clone for StatusRegister
Source§fn clone(&self) -> StatusRegister
fn clone(&self) -> StatusRegister
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 StatusRegister
impl Debug for StatusRegister
Source§impl Default for StatusRegister
impl Default for StatusRegister
Source§fn default() -> StatusRegister
fn default() -> StatusRegister
Returns the “default value” for a type. Read more
Source§impl From<StatusRegister> for u64
impl From<StatusRegister> for u64
Source§fn from(val: StatusRegister) -> Self
fn from(val: StatusRegister) -> Self
Converts to this type from the input type.
Source§impl From<u64> for StatusRegister
impl From<u64> for StatusRegister
Source§impl PartialEq for StatusRegister
impl PartialEq for StatusRegister
impl Copy for StatusRegister
impl Eq for StatusRegister
impl StructuralPartialEq for StatusRegister
Auto Trait Implementations§
impl Freeze for StatusRegister
impl RefUnwindSafe for StatusRegister
impl Send for StatusRegister
impl Sync for StatusRegister
impl Unpin for StatusRegister
impl UnwindSafe for StatusRegister
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