Struct secp256kfun_parity_backend::field::FieldStorage[][src]

pub struct FieldStorage(pub [u32; 8]);

Compact field element storage.

Implementations

impl FieldStorage[src]

pub const fn new(
    d7: u32,
    d6: u32,
    d5: u32,
    d4: u32,
    d3: u32,
    d2: u32,
    d1: u32,
    d0: u32
) -> Self
[src]

pub fn cmov(&mut self, other: &FieldStorage, flag: bool)[src]

Trait Implementations

impl Clone for FieldStorage[src]

impl Debug for FieldStorage[src]

impl Default for FieldStorage[src]

impl Eq for FieldStorage[src]

impl From<FieldStorage> for Field[src]

impl Into<FieldStorage> for Field[src]

impl PartialEq<FieldStorage> for FieldStorage[src]

impl StructuralEq for FieldStorage[src]

impl StructuralPartialEq for FieldStorage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.