pub trait AffineArithmetic: Curve + ScalarArithmetic {
type AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync;
}
Expand description
Elliptic curve with affine arithmetic implementation.
Required Associated Types§
Sourcetype AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync
type AffinePoint: 'static + AffineXCoordinate<Self> + Copy + Clone + ConditionallySelectable + ConstantTimeEq + Debug + Default + DefaultIsZeroes + Eq + PartialEq + Sized + Send + Sync
Elliptic curve point in affine coordinates.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.