pub struct AdvancedGcdConfig {
pub method: GcdMethod,
pub modulus: u64,
pub use_content: bool,
}Expand description
Configuration for advanced GCD.
Fields§
§method: GcdMethodGCD method to use.
modulus: u64Modulus for modular GCD.
use_content: boolUse content/primitive part decomposition.
Trait Implementations§
Source§impl Clone for AdvancedGcdConfig
impl Clone for AdvancedGcdConfig
Source§fn clone(&self) -> AdvancedGcdConfig
fn clone(&self) -> AdvancedGcdConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AdvancedGcdConfig
impl Debug for AdvancedGcdConfig
Auto Trait Implementations§
impl Freeze for AdvancedGcdConfig
impl RefUnwindSafe for AdvancedGcdConfig
impl Send for AdvancedGcdConfig
impl Sync for AdvancedGcdConfig
impl Unpin for AdvancedGcdConfig
impl UnsafeUnpin for AdvancedGcdConfig
impl UnwindSafe for AdvancedGcdConfig
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