pub struct BigIntData {
pub header: ObjectHeader,
pub negative: bool,
pub digits: Vec<u64>,
}Expand description
Data for a big integer.
Fields§
§header: ObjectHeaderObject header.
negative: boolSign: true = negative.
digits: Vec<u64>Magnitude as limbs.
Trait Implementations§
Source§impl Clone for BigIntData
impl Clone for BigIntData
Source§fn clone(&self) -> BigIntData
fn clone(&self) -> BigIntData
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 moreAuto Trait Implementations§
impl Freeze for BigIntData
impl RefUnwindSafe for BigIntData
impl Send for BigIntData
impl Sync for BigIntData
impl Unpin for BigIntData
impl UnsafeUnpin for BigIntData
impl UnwindSafe for BigIntData
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