pub struct StructuredReferenceString<G1Point, G2Point> {
    pub powers_main_group: Vec<G1Point>,
    pub powers_secondary_group: [G2Point; 2],
}

Fields§

§powers_main_group: Vec<G1Point>§powers_secondary_group: [G2Point; 2]

Implementations§

source§

impl<G1Point, G2Point> StructuredReferenceString<G1Point, G2Point>
where G1Point: IsGroup, G2Point: IsGroup,

source

pub fn new( powers_main_group: &[G1Point], powers_secondary_group: &[G2Point; 2] ) -> Self

source§

impl<G1Point, G2Point> StructuredReferenceString<G1Point, G2Point>
where G1Point: IsGroup + Deserializable, G2Point: IsGroup + Deserializable,

source

pub fn from_file(file_path: &str) -> Result<Self, SrsFromFileError>

Trait Implementations§

source§

impl<G1Point: Clone, G2Point: Clone> Clone for StructuredReferenceString<G1Point, G2Point>

source§

fn clone(&self) -> StructuredReferenceString<G1Point, G2Point>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<G1Point: Debug, G2Point: Debug> Debug for StructuredReferenceString<G1Point, G2Point>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<G1Point, G2Point> Deserializable for StructuredReferenceString<G1Point, G2Point>
where G1Point: IsGroup + Deserializable, G2Point: IsGroup + Deserializable,

source§

impl<G1Point: PartialEq, G2Point: PartialEq> PartialEq for StructuredReferenceString<G1Point, G2Point>

source§

fn eq(&self, other: &StructuredReferenceString<G1Point, G2Point>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<G1Point, G2Point> Serializable for StructuredReferenceString<G1Point, G2Point>
where G1Point: IsGroup + Serializable, G2Point: IsGroup + Serializable,

source§

fn serialize(&self) -> Vec<u8>

Default serialize without args
source§

impl<G1Point, G2Point> StructuralPartialEq for StructuredReferenceString<G1Point, G2Point>

Auto Trait Implementations§

§

impl<G1Point, G2Point> RefUnwindSafe for StructuredReferenceString<G1Point, G2Point>
where G1Point: RefUnwindSafe, G2Point: RefUnwindSafe,

§

impl<G1Point, G2Point> Send for StructuredReferenceString<G1Point, G2Point>
where G1Point: Send, G2Point: Send,

§

impl<G1Point, G2Point> Sync for StructuredReferenceString<G1Point, G2Point>
where G1Point: Sync, G2Point: Sync,

§

impl<G1Point, G2Point> Unpin for StructuredReferenceString<G1Point, G2Point>
where G1Point: Unpin, G2Point: Unpin,

§

impl<G1Point, G2Point> UnwindSafe for StructuredReferenceString<G1Point, G2Point>
where G1Point: UnwindSafe, G2Point: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.