#[repr(C)]pub struct Factorization {
pub factors: [u64; 15],
pub powers: [u8; 15],
pub len: usize,
}Expand description
Factorisation of an integer
Representation of the factors in the form p^k p2^k
Fields§
§factors: [u64; 15]§powers: [u8; 15]§len: usizeAuto Trait Implementations§
impl Freeze for Factorization
impl RefUnwindSafe for Factorization
impl Send for Factorization
impl Sync for Factorization
impl Unpin for Factorization
impl UnwindSafe for Factorization
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