Struct governance_os_pallet_conviction_voting::VotingParameters[][src]

pub struct VotingParameters<BlockNumber, CurrencyId> {
    pub ttl: BlockNumber,
    pub voting_currency: CurrencyId,
    pub min_quorum: u32,
    pub min_participation: u32,
}

Fields

ttl: BlockNumber

How old a proposal can get before it can be closed and considered as failing.

voting_currency: CurrencyId

Currency used to represent vote “powers”. The more tokens one has the more power to tip the balance they have.

min_quorum: u32

Minimum quorum that needs to be met in order for a proposal to be considered passing. Should be a percentage value as it is passed to Perbill::from_percent later on. Quorum is computed from all the votes casted. If quorum is set to 50% it means a proposal will pass if 50% + 1 of the votes are favorable to it.

min_participation: u32

Minimum participation that needs to be met in order for a proposal to be considered passing. Should be a percentage value as it is passed to Perbill::from_percent later on. If the minimum participation is set to 33% it means that at least 33% + 1 of the voting_currency total supply need to have been used in votes for or against the proposal.

Trait Implementations

impl<BlockNumber: Clone, CurrencyId: Clone> Clone for VotingParameters<BlockNumber, CurrencyId>[src]

impl<BlockNumber, CurrencyId> Debug for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Debug,
    CurrencyId: Debug
[src]

impl<BlockNumber, CurrencyId> Decode for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Decode,
    BlockNumber: Decode,
    CurrencyId: Decode,
    CurrencyId: Decode
[src]

impl<BlockNumber: Default, CurrencyId: Default> Default for VotingParameters<BlockNumber, CurrencyId>[src]

impl<'de, BlockNumber, CurrencyId> Deserialize<'de> for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Deserialize<'de>,
    CurrencyId: Deserialize<'de>, 
[src]

impl<BlockNumber, CurrencyId> Encode for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Encode,
    BlockNumber: Encode,
    CurrencyId: Encode,
    CurrencyId: Encode
[src]

impl<BlockNumber: PartialEq, CurrencyId: PartialEq> PartialEq<VotingParameters<BlockNumber, CurrencyId>> for VotingParameters<BlockNumber, CurrencyId>[src]

impl<BlockNumber, CurrencyId> Serialize for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Serialize,
    CurrencyId: Serialize
[src]

impl<BlockNumber, CurrencyId> EncodeLike<VotingParameters<BlockNumber, CurrencyId>> for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Encode,
    BlockNumber: Encode,
    CurrencyId: Encode,
    CurrencyId: Encode
[src]

impl<BlockNumber: Eq, CurrencyId: Eq> Eq for VotingParameters<BlockNumber, CurrencyId>[src]

impl<BlockNumber, CurrencyId> StructuralEq for VotingParameters<BlockNumber, CurrencyId>[src]

impl<BlockNumber, CurrencyId> StructuralPartialEq for VotingParameters<BlockNumber, CurrencyId>[src]

Auto Trait Implementations

impl<BlockNumber, CurrencyId> RefUnwindSafe for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: RefUnwindSafe,
    CurrencyId: RefUnwindSafe

impl<BlockNumber, CurrencyId> Send for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Send,
    CurrencyId: Send

impl<BlockNumber, CurrencyId> Sync for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Sync,
    CurrencyId: Sync

impl<BlockNumber, CurrencyId> Unpin for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: Unpin,
    CurrencyId: Unpin

impl<BlockNumber, CurrencyId> UnwindSafe for VotingParameters<BlockNumber, CurrencyId> where
    BlockNumber: UnwindSafe,
    CurrencyId: UnwindSafe

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> CheckedConversion for T[src]

impl<T> Clear for T where
    T: Default + Eq + PartialEq<T>, 
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Hashable for T where
    T: Codec
[src]

impl<T> Instrument for T[src]

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

impl<T> IsType<T> for T[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> KeyedVec for T where
    T: Codec
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<S> Codec for S where
    S: Decode + Encode
[src]

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

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: ToOwned + Encode
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe
[src]

impl<T> MaybeSerialize for T where
    T: Serialize
[src]

impl<T> MaybeSerializeDeserialize for T where
    T: DeserializeOwned + Serialize
[src]

impl<T> Member for T where
    T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone
[src]

impl<T> Parameter for T where
    T: Codec + EncodeLike<T> + Clone + Eq + Debug
[src]