pub struct UInt128Struct {
pub lo: u64,
pub hi: u64,
}Expand description
128-bit unsigned integer struct for high-precision multiplication Direct port from clipper.core.h line 685
Fields§
§lo: u64§hi: u64Trait Implementations§
Source§impl Clone for UInt128Struct
impl Clone for UInt128Struct
Source§fn clone(&self) -> UInt128Struct
fn clone(&self) -> UInt128Struct
Returns a duplicate 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 UInt128Struct
impl Debug for UInt128Struct
Source§impl PartialEq for UInt128Struct
impl PartialEq for UInt128Struct
impl Copy for UInt128Struct
impl StructuralPartialEq for UInt128Struct
Auto Trait Implementations§
impl Freeze for UInt128Struct
impl RefUnwindSafe for UInt128Struct
impl Send for UInt128Struct
impl Sync for UInt128Struct
impl Unpin for UInt128Struct
impl UnwindSafe for UInt128Struct
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