pub struct LargeInteger {
pub low: u32,
pub high: u32,
}Expand description
Large integer (comp): low/high 32-битные половины (зеркало { low, high }).
Fields§
§low: u32§high: u32Trait Implementations§
Source§impl Clone for LargeInteger
impl Clone for LargeInteger
Source§fn clone(&self) -> LargeInteger
fn clone(&self) -> LargeInteger
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LargeInteger
impl Debug for LargeInteger
impl Eq for LargeInteger
Source§impl PartialEq for LargeInteger
impl PartialEq for LargeInteger
Source§fn eq(&self, other: &LargeInteger) -> bool
fn eq(&self, other: &LargeInteger) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LargeInteger
Auto Trait Implementations§
impl Freeze for LargeInteger
impl RefUnwindSafe for LargeInteger
impl Send for LargeInteger
impl Sync for LargeInteger
impl Unpin for LargeInteger
impl UnsafeUnpin for LargeInteger
impl UnwindSafe for LargeInteger
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