#[repr(C)]pub struct Factorization128 {
pub factors: [u128; 26],
pub powers: [u8; 26],
pub len: usize,
}Expand description
Factorization of a 128-bit integer
Fields§
§factors: [u128; 26]§powers: [u8; 26]§len: usizeAuto Trait Implementations§
impl Freeze for Factorization128
impl RefUnwindSafe for Factorization128
impl Send for Factorization128
impl Sync for Factorization128
impl Unpin for Factorization128
impl UnwindSafe for Factorization128
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