Struct ring::ec::suite_b::ops::elem::Elem

source ·
pub struct Elem<M, E: Encoding> {
    pub(super) limbs: [u64; 6],
    pub(super) m: PhantomData<M>,
    pub(super) encoding: PhantomData<E>,
}
Expand description

Elements of ℤ/mℤ for some modulus m. Elements are always fully reduced with respect to m; i.e. the 0 <= x < m for every value x.

Fields§

§limbs: [u64; 6]§m: PhantomData<M>

The modulus m for the ring ℤ/mℤ for which this element is a value.

§encoding: PhantomData<E>

The number of Montgomery factors that need to be canceled out from value to get the actual value.

Implementations§

source§

impl<M, E: Encoding> Elem<M, E>

source

pub fn zero() -> Self

source

pub const fn from_hex(hex: &str) -> Self

Trait Implementations§

source§

impl<M: Clone, E: Clone + Encoding> Clone for Elem<M, E>

source§

fn clone(&self) -> Elem<M, E>

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<M: Copy, E: Copy + Encoding> Copy for Elem<M, E>

Auto Trait Implementations§

§

impl<M, E> RefUnwindSafe for Elem<M, E>where E: RefUnwindSafe, M: RefUnwindSafe,

§

impl<M, E> Send for Elem<M, E>where E: Send, M: Send,

§

impl<M, E> Sync for Elem<M, E>where E: Sync, M: Sync,

§

impl<M, E> Unpin for Elem<M, E>where E: Unpin, M: Unpin,

§

impl<M, E> UnwindSafe for Elem<M, E>where E: UnwindSafe, M: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.