pub struct BigNatData {
pub header: ObjectHeader,
pub digits: Vec<u64>,
}Expand description
Data for a big natural number.
Fields§
§header: ObjectHeaderObject header.
digits: Vec<u64>Limbs (base-2^64 digits, least significant first).
Trait Implementations§
Source§impl Clone for BigNatData
impl Clone for BigNatData
Source§fn clone(&self) -> BigNatData
fn clone(&self) -> BigNatData
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 BigNatData
impl RefUnwindSafe for BigNatData
impl Send for BigNatData
impl Sync for BigNatData
impl Unpin for BigNatData
impl UnsafeUnpin for BigNatData
impl UnwindSafe for BigNatData
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