[][src]Struct ursa::pair::PointG2

pub struct PointG2 { /* fields omitted */ }

Methods

impl PointG2[src]

pub const BYTES_REPR_SIZE: usize[src]

pub fn new() -> UrsaCryptoResult<PointG2>[src]

Creates new random PointG2

pub fn new_inf() -> UrsaCryptoResult<PointG2>[src]

Creates new infinity PointG2

pub fn add(&self, q: &PointG2) -> UrsaCryptoResult<PointG2>[src]

PointG2 * PointG2

pub fn sub(&self, q: &PointG2) -> UrsaCryptoResult<PointG2>[src]

PointG2 / PointG2

pub fn neg(&self) -> UrsaCryptoResult<PointG2>[src]

pub fn mul(&self, e: &GroupOrderElement) -> UrsaCryptoResult<PointG2>[src]

PointG2 ^ GroupOrderElement

pub fn to_string(&self) -> UrsaCryptoResult<String>[src]

pub fn from_string(str: &str) -> UrsaCryptoResult<PointG2>[src]

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

pub fn from_bytes(b: &[u8]) -> UrsaCryptoResult<PointG2>[src]

Trait Implementations

impl Clone for PointG2[src]

impl PartialEq<PointG2> for PointG2[src]

impl Copy for PointG2[src]

impl Debug for PointG2[src]

impl Serialize for PointG2[src]

impl<'a> Deserialize<'a> for PointG2[src]

Auto Trait Implementations

impl Send for PointG2

impl Unpin for PointG2

impl Sync for PointG2

impl UnwindSafe for PointG2

impl RefUnwindSafe for PointG2

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]