Struct tiny_secp256k1::big_num::BigNum [] [src]

pub struct BigNum { /* fields omitted */ }

Methods

impl BigNum
[src]

Trait Implementations

impl Copy for BigNum
[src]

impl Clone for BigNum
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for BigNum
[src]

impl Debug for BigNum
[src]

Formats the value using the given formatter.

impl PartialEq for BigNum
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Ord for BigNum
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for BigNum
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<u32> for BigNum
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> PartialEq<u32> for &'a BigNum
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd<u32> for BigNum
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<'a> Add<&'a BigNum> for BigNum
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a> AddAssign<&'a BigNum> for BigNum
[src]

The method for the += operator

impl Add<u32> for BigNum
[src]

The resulting type after applying the + operator

The method for the + operator

impl AddAssign<u32> for BigNum
[src]

The method for the += operator

impl<'a> Sub<&'a BigNum> for BigNum
[src]

The resulting type after applying the - operator

The method for the - operator

impl<'a> SubAssign<&'a BigNum> for BigNum
[src]

The method for the -= operator

impl<'a> Mul<&'a BigNum> for BigNum
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a> MulAssign<&'a BigNum> for BigNum
[src]

The method for the *= operator

impl Mul<u32> for BigNum
[src]

The resulting type after applying the * operator

The method for the * operator

impl MulAssign<u32> for BigNum
[src]

The method for the *= operator

impl Shr<u32> for BigNum
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl ShrAssign<u32> for BigNum
[src]

The method for the >>= operator

impl<'a> From<&'a [u8]> for BigNum
[src]

Performs the conversion.

impl From<u32> for BigNum
[src]

Performs the conversion.