pub struct QuadraticVotingParams<G: Group> { /* private fields */ }
Expand description

Quadratic voting parameters prepared for a certain Group.

The parameters are:

See QuadraticVotingBallot for a detailed description of parameters.

§Examples

let (receiver, _) = Keypair::<Ristretto>::generate(&mut thread_rng())
    .into_tuple();
let mut params = QuadraticVotingParams::new(receiver, 5, 20);
// 5 options, 20 credits.
assert_eq!(params.options_count(), 5);
assert_eq!(params.credits(), 20);
// By default, max votes per option are determined based on credits
assert_eq!(params.max_votes(), 4); // 4 < sqrt(20) < 5

// It is possible to reduce max votes per ballot.
params.set_max_votes(3);
assert_eq!(params.max_votes(), 3);

Implementations§

source§

impl<G: Group> QuadraticVotingParams<G>

source

pub fn new(receiver: PublicKey<G>, options: usize, credits: u64) -> Self

Creates new parameters for the specified number of credits allocated per voter.

The maximum number of votes per option is automatically set as floor(sqrt(credits)); it can be changed via Self::set_max_votes().

§Panics

Panics if the number of options or credits is zero.

source

pub fn receiver(&self) -> &PublicKey<G>

Returns the public key for which the QuadraticVotingBallots are encrypted.

source

pub fn options_count(&self) -> usize

Returns the number of options.

source

pub fn credits(&self) -> u64

Returns the number of credits per ballot.

source

pub fn max_votes(&self) -> u64

Returns the maximum number of votes per option.

source

pub fn set_max_votes(&mut self, max_votes: u64)

Sets the maximum number of votes per option.

§Panics

Panics if max_votes * max_votes exceeds credits; in this case, this number of votes cannot be cast for a single option.

Trait Implementations§

source§

impl<G: Clone + Group> Clone for QuadraticVotingParams<G>

source§

fn clone(&self) -> QuadraticVotingParams<G>

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<G: Debug + Group> Debug for QuadraticVotingParams<G>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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.

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.
§

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

§

fn vzip(self) -> V