pub struct GcdResult {
pub gcd: BigNumber,
pub x: BigNumber,
pub y: BigNumber,
}Expand description
GcdResult encapsulates the gcd result and the Bézout coefficients
Fields§
§gcd: BigNumberQuotient
x: BigNumberBézout coefficient
y: BigNumberBézout coefficient
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GcdResult
impl RefUnwindSafe for GcdResult
impl Send for GcdResult
impl Sync for GcdResult
impl Unpin for GcdResult
impl UnsafeUnpin for GcdResult
impl UnwindSafe for GcdResult
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