pub enum PrimeGenClass {
Nth,
Lim,
}Expand description
Prime number generation variants enumeration.
Variants§
Nth
Nth prime number generation.
Lim
Highest prime number lesser than input or equal to it generation.
Trait Implementations§
Source§impl Clone for PrimeGenClass
impl Clone for PrimeGenClass
Source§fn clone(&self) -> PrimeGenClass
fn clone(&self) -> PrimeGenClass
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 moreSource§impl Debug for PrimeGenClass
impl Debug for PrimeGenClass
Source§impl PartialEq for PrimeGenClass
impl PartialEq for PrimeGenClass
impl StructuralPartialEq for PrimeGenClass
Auto Trait Implementations§
impl Freeze for PrimeGenClass
impl RefUnwindSafe for PrimeGenClass
impl Send for PrimeGenClass
impl Sync for PrimeGenClass
impl Unpin for PrimeGenClass
impl UnsafeUnpin for PrimeGenClass
impl UnwindSafe for PrimeGenClass
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