pub struct U64Field<const MODULUS: u64>;

Trait Implementations§

source§

impl<const MODULUS: u64> Clone for U64Field<MODULUS>

source§

fn clone(&self) -> U64Field<MODULUS>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const MODULUS: u64> Debug for U64Field<MODULUS>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl HasQuadraticNonResidue<U64Field<18446744069414584321>> for TestNonResidue

source§

impl<const MODULUS: u64> IsField for U64Field<MODULUS>

source§

type BaseType = u64

source§

fn add(a: &u64, b: &u64) -> u64

Returns the sum of a and b.
source§

fn sub(a: &u64, b: &u64) -> u64

Returns the subtraction of a and b.
source§

fn neg(a: &u64) -> u64

Returns the additive inverse of a.
source§

fn mul(a: &u64, b: &u64) -> u64

Returns the multiplication of a and b.
source§

fn div(a: &u64, b: &u64) -> u64

Returns the division of a and b.
source§

fn inv(a: &u64) -> Result<u64, FieldError>

Returns the multiplicative inverse of a.
source§

fn eq(a: &u64, b: &u64) -> bool

Returns a boolean indicating whether a and b are equal or not.
source§

fn zero() -> u64

Returns the additive neutral element.
source§

fn one() -> u64

Returns the multiplicative neutral element.
source§

fn from_u64(x: u64) -> u64

Returns the element x * 1 where 1 is the multiplicative neutral element.
source§

fn from_base_type(x: u64) -> u64

Takes as input an element of BaseType and returns the internal representation of that element in the field.
source§

fn double(a: &Self::BaseType) -> Self::BaseType

Returns the double of a.
source§

fn square(a: &Self::BaseType) -> Self::BaseType

Returns the multiplication of a and a.
source§

fn pow<T>(a: &Self::BaseType, exponent: T) -> Self::BaseType

source§

impl<const MODULUS: u64> IsPrimeField for U64Field<MODULUS>

source§

fn field_bit_size() -> usize

Returns how many bits do you need to represent the biggest field element It expects the MODULUS to be a Prime

source§

type RepresentativeType = u64

source§

fn representative(x: &u64) -> u64

Returns the integer representative in the range [0, p-1], where p the modulus
source§

fn from_hex(hex_string: &str) -> Result<Self::BaseType, CreationError>

Creates a BaseType from a Hex String 0x is optional Returns an CreationError::InvalidHexStringif the value is not a hexstring
source§

fn to_hex(x: &u64) -> String

Creates a hexstring from a FieldElement without 0x.
source§

fn modulus_minus_one() -> Self::RepresentativeType

source§

fn legendre_symbol(a: &Self::BaseType) -> LegendreSymbol

source§

fn sqrt(a: &Self::BaseType) -> Option<(Self::BaseType, Self::BaseType)>

Returns the two square roots of self if they exist and None otherwise
source§

impl<const MODULUS: u64> PartialEq for U64Field<MODULUS>

source§

fn eq(&self, other: &U64Field<MODULUS>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<const MODULUS: u64> Eq for U64Field<MODULUS>

source§

impl<const MODULUS: u64> StructuralPartialEq for U64Field<MODULUS>

Auto Trait Implementations§

§

impl<const MODULUS: u64> Freeze for U64Field<MODULUS>

§

impl<const MODULUS: u64> RefUnwindSafe for U64Field<MODULUS>

§

impl<const MODULUS: u64> Send for U64Field<MODULUS>

§

impl<const MODULUS: u64> Sync for U64Field<MODULUS>

§

impl<const MODULUS: u64> Unpin for U64Field<MODULUS>

§

impl<const MODULUS: u64> UnwindSafe for U64Field<MODULUS>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<F, Q> IsSubFieldOf<CubicExtensionField<F, Q>> for F
where F: IsField, Q: Clone + Debug + HasCubicNonResidue<F>,

source§

impl<F> IsSubFieldOf<F> for F
where F: IsField,

source§

fn mul( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> <F as IsField>::BaseType

source§

fn add( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> <F as IsField>::BaseType

source§

fn sub( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> <F as IsField>::BaseType

source§

fn div( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> <F as IsField>::BaseType

source§

fn embed(a: <F as IsField>::BaseType) -> <F as IsField>::BaseType

source§

fn to_subfield_vec(b: <F as IsField>::BaseType) -> Vec<<F as IsField>::BaseType>

source§

impl<F, Q> IsSubFieldOf<QuadraticExtensionField<F, Q>> for F

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.