Struct algonaut_transaction::builder::RegisterKey[][src]

pub struct RegisterKey { /* fields omitted */ }

A builder for KeyRegistration.

Implementations

impl RegisterKey[src]

pub fn new() -> Self[src]

pub fn vote_pk(self, vote_pk: VotePk) -> Self[src]

pub fn selection_pk(self, selection_pk: VrfPk) -> Self[src]

pub fn vote_first(self, vote_first: Round) -> Self[src]

pub fn vote_last(self, vote_last: Round) -> Self[src]

pub fn vote_key_dilution(self, vote_key_dilution: u64) -> Self[src]

pub fn nonparticipating(self, nonparticipating: Option<bool>) -> Self[src]

pub fn build(self) -> KeyRegistration[src]

Trait Implementations

impl Default for RegisterKey[src]

Auto Trait Implementations

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