Struct governance_os_pallet_organizations::OrganizationDetails[][src]

pub struct OrganizationDetails<AccountId, VotingSystem> {
    pub executors: Vec<AccountId>,
    pub voting: VotingSystem,
}

This structure is used to encode metadata about an organization.

Fields

executors: Vec<AccountId>

A set of accounts that have access to the apply_as function of an organization.

voting: VotingSystem

Which voting system is in place. executors do not need to go through it due to their higher privilege permission.

Implementations

impl<AccountId: Ord, VotingSystem> OrganizationDetails<AccountId, VotingSystem>[src]

pub fn sort(&mut self)[src]

Sort all the vectors inside the strutcture.

Trait Implementations

impl<AccountId: Clone, VotingSystem: Clone> Clone for OrganizationDetails<AccountId, VotingSystem>[src]

impl<AccountId, VotingSystem> Debug for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: Debug,
    VotingSystem: Debug
[src]

impl<AccountId, VotingSystem> Decode for OrganizationDetails<AccountId, VotingSystem> where
    Vec<AccountId>: Decode,
    Vec<AccountId>: Decode,
    VotingSystem: Decode,
    VotingSystem: Decode
[src]

impl<AccountId: Default, VotingSystem: Default> Default for OrganizationDetails<AccountId, VotingSystem>[src]

impl<'de, AccountId, VotingSystem> Deserialize<'de> for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: Deserialize<'de>,
    VotingSystem: Deserialize<'de>, 
[src]

impl<AccountId, VotingSystem> Encode for OrganizationDetails<AccountId, VotingSystem> where
    Vec<AccountId>: Encode,
    Vec<AccountId>: Encode,
    VotingSystem: Encode,
    VotingSystem: Encode
[src]

impl<AccountId: PartialEq, VotingSystem: PartialEq> PartialEq<OrganizationDetails<AccountId, VotingSystem>> for OrganizationDetails<AccountId, VotingSystem>[src]

impl<AccountId, VotingSystem> Serialize for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: Serialize,
    VotingSystem: Serialize
[src]

impl<T: Config> StorageMap<<T as Config>::AccountId, OrganizationDetails<<T as Config>::AccountId, (<<T as Config>::VotingRouter as VotingRouter>::VotingSystemId, <<T as Config>::VotingRouter as VotingRouter>::Parameters)>> for Parameters<T>[src]

type Query = Option<OrganizationDetails<<T as Config>::AccountId, (<<T as Config>::VotingRouter as VotingRouter>::VotingSystemId, <<T as Config>::VotingRouter as VotingRouter>::Parameters)>>

The type that get/take returns.

type Hasher = Blake2_128Concat

Hasher. Used for generating final key.

impl<T: Config> StoragePrefixedMap<OrganizationDetails<<T as Config>::AccountId, (<<T as Config>::VotingRouter as VotingRouter>::VotingSystemId, <<T as Config>::VotingRouter as VotingRouter>::Parameters)>> for Parameters<T>[src]

impl<AccountId, VotingSystem> EncodeLike<OrganizationDetails<AccountId, VotingSystem>> for OrganizationDetails<AccountId, VotingSystem> where
    Vec<AccountId>: Encode,
    Vec<AccountId>: Encode,
    VotingSystem: Encode,
    VotingSystem: Encode
[src]

impl<AccountId: Eq, VotingSystem: Eq> Eq for OrganizationDetails<AccountId, VotingSystem>[src]

impl<AccountId, VotingSystem> StructuralEq for OrganizationDetails<AccountId, VotingSystem>[src]

impl<AccountId, VotingSystem> StructuralPartialEq for OrganizationDetails<AccountId, VotingSystem>[src]

Auto Trait Implementations

impl<AccountId, VotingSystem> RefUnwindSafe for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: RefUnwindSafe,
    VotingSystem: RefUnwindSafe

impl<AccountId, VotingSystem> Send for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: Send,
    VotingSystem: Send

impl<AccountId, VotingSystem> Sync for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: Sync,
    VotingSystem: Sync

impl<AccountId, VotingSystem> Unpin for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: Unpin,
    VotingSystem: Unpin

impl<AccountId, VotingSystem> UnwindSafe for OrganizationDetails<AccountId, VotingSystem> where
    AccountId: UnwindSafe,
    VotingSystem: 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]