pub struct IntFactor {
pub integer: u128,
pub exponent: u32,
}Expand description
A prime factor with its exponent (e.g., 2^3 means integer=2, exponent=3).
Fields§
§integer: u128§exponent: u32Implementations§
Trait Implementations§
Source§impl Ord for IntFactor
impl Ord for IntFactor
Source§impl PartialOrd for IntFactor
impl PartialOrd for IntFactor
impl Copy for IntFactor
impl Eq for IntFactor
impl StructuralPartialEq for IntFactor
Auto Trait Implementations§
impl Freeze for IntFactor
impl RefUnwindSafe for IntFactor
impl Send for IntFactor
impl Sync for IntFactor
impl Unpin for IntFactor
impl UnsafeUnpin for IntFactor
impl UnwindSafe for IntFactor
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