[][src]Struct sm2::field::FieldElem

pub struct FieldElem {
    pub value: [u32; 8],
}

Fields

value: [u32; 8]

Methods

impl FieldElem[src]

pub fn new(x: [u32; 8]) -> FieldElem[src]

pub fn from_slice(x: &[u32]) -> FieldElem[src]

pub fn zero() -> FieldElem[src]

pub fn ge(&self, x: &FieldElem) -> bool[src]

pub fn eq(&self, x: &FieldElem) -> bool[src]

pub fn div2(&self, carry: u32) -> FieldElem[src]

pub fn is_even(&self) -> bool[src]

pub fn to_bytes(&self) -> Vec<u8>[src]

pub fn from_bytes(x: &[u8]) -> FieldElem[src]

pub fn to_biguint(&self) -> BigUint[src]

pub fn from_biguint(bi: &BigUint) -> FieldElem[src]

pub fn from_num(x: u64) -> FieldElem[src]

pub fn to_str(&self, radix: u32) -> String[src]

pub fn get_value(&self, i: usize) -> u32[src]

Trait Implementations

impl Clone for FieldElem[src]

impl Copy for FieldElem[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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,