pub struct HiLo {
pub hi: u64,
pub lo: u64,
}Expand description
The HI/LO register pair, written by every multiply and divide.
Fields§
§hi: u64HI — the high half, or the division remainder.
lo: u64LO — the low half, or the division quotient.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HiLo
impl<'de> Deserialize<'de> for HiLo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for HiLo
impl Eq for HiLo
impl StructuralPartialEq for HiLo
Auto Trait Implementations§
impl Freeze for HiLo
impl RefUnwindSafe for HiLo
impl Send for HiLo
impl Sync for HiLo
impl Unpin for HiLo
impl UnsafeUnpin for HiLo
impl UnwindSafe for HiLo
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