[][src]Struct amcl_wrapper::ECCurve::dbig::DBIG

pub struct DBIG {
    pub w: [i64; 14],
}

Fields

w: [i64; 14]

Implementations

impl DBIG[src]

pub fn new() -> DBIG[src]

pub fn new_copy(y: &DBIG) -> DBIG[src]

pub fn new_scopy(x: &BIG) -> DBIG[src]

pub fn split(&mut self, n: usize) -> BIG[src]

pub fn shl(&mut self, k: usize)[src]

pub fn shr(&mut self, k: usize)[src]

pub fn copy(&mut self, x: &DBIG)[src]

pub fn ucopy(&mut self, x: &BIG)[src]

pub fn cmove(&mut self, g: &DBIG, d: isize)[src]

pub fn add(&mut self, x: &DBIG)[src]

pub fn sub(&mut self, x: &DBIG)[src]

pub fn rsub(&mut self, x: &DBIG)[src]

pub fn comp(a: &DBIG, b: &DBIG) -> isize[src]

pub fn frombytes(b: &[u8]) -> DBIG[src]

pub fn norm(&mut self)[src]

pub fn dmod(&mut self, c: &BIG) -> BIG[src]

pub fn div(&mut self, c: &BIG) -> BIG[src]

pub fn nbits(&mut self) -> usize[src]

pub fn tostring(&mut self) -> String[src]

Auto Trait Implementations

impl RefUnwindSafe for DBIG

impl Send for DBIG

impl Sync for DBIG

impl Unpin for DBIG

impl UnwindSafe for DBIG

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, 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>,