Struct eikon3ds_core::arch::ShiftResults
source · pub struct ShiftResults {
pub val: u32,
pub carry_out: bool,
}
Expand description
Represents the results of a Risc shift operation that returns a value and a carry out.
Fields§
§val: u32
The resulting val of the shift operation.
carry_out: bool
The carry out from the shift operation.
Auto Trait Implementations§
impl RefUnwindSafe for ShiftResults
impl Send for ShiftResults
impl Sync for ShiftResults
impl Unpin for ShiftResults
impl UnwindSafe for ShiftResults
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