Enum pallet_domains::Call

source ·
pub enum Call<T: Config> {
Show 20 variants submit_bundle { opaque_bundle: OpaqueBundleOf<T>, }, submit_fraud_proof { fraud_proof: Box<FraudProofFor<T>>, }, register_domain_runtime { runtime_name: String, runtime_type: RuntimeType, raw_genesis_storage: Vec<u8>, }, upgrade_domain_runtime { runtime_id: RuntimeId, raw_genesis_storage: Vec<u8>, }, register_operator { domain_id: DomainId, amount: <T as Config>::Balance, config: OperatorConfig<<T as Config>::Balance>, signing_key_proof_of_ownership: OperatorSignature, }, nominate_operator { operator_id: OperatorId, amount: <T as Config>::Balance, }, instantiate_domain { domain_config: DomainConfig<T::AccountId, <T as Config>::Balance>, }, deregister_operator { operator_id: OperatorId, }, withdraw_stake { operator_id: OperatorId, to_withdraw: WithdrawStake<<T as Config>::Balance, T::Share>, }, unlock_funds { operator_id: OperatorId, }, unlock_nominator { operator_id: OperatorId, }, update_domain_operator_allow_list { domain_id: DomainId, operator_allow_list: OperatorAllowList<T::AccountId>, }, force_staking_epoch_transition { domain_id: DomainId, }, set_permissioned_action_allowed_by { permissioned_action_allowed_by: PermissionedActionAllowedBy<T::AccountId>, }, send_domain_sudo_call { domain_id: DomainId, call: Vec<u8>, }, freeze_domain { domain_id: DomainId, }, unfreeze_domain { domain_id: DomainId, }, prune_domain_execution_receipt { domain_id: DomainId, bad_receipt_hash: ReceiptHashFor<T>, }, transfer_treasury_funds { account_id: T::AccountId, balance: <T as Config>::Balance, }, submit_receipt { singleton_receipt: SingletonReceiptOf<T>, }, // some variants omitted
}
Expand description

Contains a variant per dispatchable extrinsic that this pallet has.

Variants§

§

submit_bundle

Fields

§opaque_bundle: OpaqueBundleOf<T>
§

submit_fraud_proof

Fields

§fraud_proof: Box<FraudProofFor<T>>
§

register_domain_runtime

Fields

§runtime_name: String
§runtime_type: RuntimeType
§raw_genesis_storage: Vec<u8>
§

upgrade_domain_runtime

Fields

§runtime_id: RuntimeId
§raw_genesis_storage: Vec<u8>
§

register_operator

Fields

§domain_id: DomainId
§amount: <T as Config>::Balance
§signing_key_proof_of_ownership: OperatorSignature
§

nominate_operator

Fields

§operator_id: OperatorId
§amount: <T as Config>::Balance
§

instantiate_domain

Fields

§domain_config: DomainConfig<T::AccountId, <T as Config>::Balance>
§

deregister_operator

Fields

§operator_id: OperatorId
§

withdraw_stake

Fields

§operator_id: OperatorId
§to_withdraw: WithdrawStake<<T as Config>::Balance, T::Share>
§

unlock_funds

Unlocks the first withdrawal given the unlocking period is complete. Even if rest of the withdrawals are out of unlocking period, nominator should call this extrinsic to unlock each withdrawal

Fields

§operator_id: OperatorId
§

unlock_nominator

Unlocks the nominator under given operator given the unlocking period is complete. A nominator can initiate their unlock given operator is already deregistered.

Fields

§operator_id: OperatorId
§

update_domain_operator_allow_list

Extrinsic to update domain’s operator allow list. Note:

  • If the previous allowed list is set to specific operators and new allow list is set to Anyone, then domain will become permissioned to open for all operators.
  • If the previous allowed list is set to Anyone or specific operators and the new allow list is set to specific operators, then all the registered not allowed operators will continue to operate until they de-register themselves.

Fields

§domain_id: DomainId
§operator_allow_list: OperatorAllowList<T::AccountId>
§

force_staking_epoch_transition

Force staking epoch transition for a given domain

Fields

§domain_id: DomainId
§

set_permissioned_action_allowed_by

Update permissioned action allowed by storage by Sudo.

Fields

§permissioned_action_allowed_by: PermissionedActionAllowedBy<T::AccountId>
§

send_domain_sudo_call

Submit a domain sudo call.

Fields

§domain_id: DomainId
§call: Vec<u8>
§

freeze_domain

Freezes a given domain. A frozen domain does not accept new bundles but accepts fraud proofs.

Fields

§domain_id: DomainId
§

unfreeze_domain

Unfreezes a frozen domain.

Fields

§domain_id: DomainId
§

prune_domain_execution_receipt

Prunes a given execution receipt for given frozen domain. This call assumes the execution receipt to be bad and implicitly trusts Sudo to do necessary validation of the ER before dispatching this call.

Fields

§domain_id: DomainId
§bad_receipt_hash: ReceiptHashFor<T>
§

transfer_treasury_funds

Transfer funds from treasury to given account

Fields

§account_id: T::AccountId
§balance: <T as Config>::Balance
§

submit_receipt

Fields

§singleton_receipt: SingletonReceiptOf<T>

Implementations§

source§

impl<T: Config> Call<T>

source

pub fn new_call_variant_submit_bundle(opaque_bundle: OpaqueBundleOf<T>) -> Self

Create a call with the variant submit_bundle.

source

pub fn new_call_variant_submit_fraud_proof( fraud_proof: Box<FraudProofFor<T>>, ) -> Self

Create a call with the variant submit_fraud_proof.

source

pub fn new_call_variant_register_domain_runtime( runtime_name: String, runtime_type: RuntimeType, raw_genesis_storage: Vec<u8>, ) -> Self

Create a call with the variant register_domain_runtime.

source

pub fn new_call_variant_upgrade_domain_runtime( runtime_id: RuntimeId, raw_genesis_storage: Vec<u8>, ) -> Self

Create a call with the variant upgrade_domain_runtime.

source

pub fn new_call_variant_register_operator( domain_id: DomainId, amount: <T as Config>::Balance, config: OperatorConfig<<T as Config>::Balance>, signing_key_proof_of_ownership: OperatorSignature, ) -> Self

Create a call with the variant register_operator.

source

pub fn new_call_variant_nominate_operator( operator_id: OperatorId, amount: <T as Config>::Balance, ) -> Self

Create a call with the variant nominate_operator.

source

pub fn new_call_variant_instantiate_domain( domain_config: DomainConfig<T::AccountId, <T as Config>::Balance>, ) -> Self

Create a call with the variant instantiate_domain.

source

pub fn new_call_variant_deregister_operator(operator_id: OperatorId) -> Self

Create a call with the variant deregister_operator.

source

pub fn new_call_variant_withdraw_stake( operator_id: OperatorId, to_withdraw: WithdrawStake<<T as Config>::Balance, T::Share>, ) -> Self

Create a call with the variant withdraw_stake.

source

pub fn new_call_variant_unlock_funds(operator_id: OperatorId) -> Self

Create a call with the variant unlock_funds.

source

pub fn new_call_variant_unlock_nominator(operator_id: OperatorId) -> Self

Create a call with the variant unlock_nominator.

source

pub fn new_call_variant_update_domain_operator_allow_list( domain_id: DomainId, operator_allow_list: OperatorAllowList<T::AccountId>, ) -> Self

Create a call with the variant update_domain_operator_allow_list.

source

pub fn new_call_variant_force_staking_epoch_transition( domain_id: DomainId, ) -> Self

Create a call with the variant force_staking_epoch_transition.

source

pub fn new_call_variant_set_permissioned_action_allowed_by( permissioned_action_allowed_by: PermissionedActionAllowedBy<T::AccountId>, ) -> Self

Create a call with the variant set_permissioned_action_allowed_by.

source

pub fn new_call_variant_send_domain_sudo_call( domain_id: DomainId, call: Vec<u8>, ) -> Self

Create a call with the variant send_domain_sudo_call.

source

pub fn new_call_variant_freeze_domain(domain_id: DomainId) -> Self

Create a call with the variant freeze_domain.

source

pub fn new_call_variant_unfreeze_domain(domain_id: DomainId) -> Self

Create a call with the variant unfreeze_domain.

source

pub fn new_call_variant_prune_domain_execution_receipt( domain_id: DomainId, bad_receipt_hash: ReceiptHashFor<T>, ) -> Self

Create a call with the variant prune_domain_execution_receipt.

source

pub fn new_call_variant_transfer_treasury_funds( account_id: T::AccountId, balance: <T as Config>::Balance, ) -> Self

Create a call with the variant transfer_treasury_funds.

source

pub fn new_call_variant_submit_receipt( singleton_receipt: SingletonReceiptOf<T>, ) -> Self

Create a call with the variant submit_receipt.

Trait Implementations§

source§

impl<T: Config> CheckIfFeeless for Call<T>

§

type Origin = <T as Config>::RuntimeOrigin

The Origin type of the runtime.
source§

fn is_feeless(&self, origin: &Self::Origin) -> bool

Checks if the dispatchable satisfies the feeless condition as defined by #[pallet::feeless_if]
source§

impl<T: Config> Clone for Call<T>

source§

fn clone(&self) -> Self

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<T: Config> Debug for Call<T>

source§

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

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

impl<T: Config> Decode for Call<T>

source§

fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>

Attempt to deserialise the value from input.
§

fn decode_into<I>( input: &mut I, dst: &mut MaybeUninit<Self>, ) -> Result<DecodeFinished, Error>
where I: Input,

Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
§

fn skip<I>(input: &mut I) -> Result<(), Error>
where I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl<T: Config> Encode for Call<T>

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )

Convert self to a slice and append it to the destination.
§

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

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> R
where F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<T: Config> GetCallIndex for Call<T>

source§

fn get_call_index(&self) -> u8

Return the index of this Call.
source§

fn get_call_indices() -> &'static [u8]

Return all call indices in the same order as [GetCallName].
source§

impl<T: Config> GetCallName for Call<T>

source§

fn get_call_name(&self) -> &'static str

Return the function name of the Call.
source§

fn get_call_names() -> &'static [&'static str]

Return all function names in the same order as [GetCallIndex].
source§

impl<T: Config> GetDispatchInfo for Call<T>

source§

fn get_dispatch_info(&self) -> DispatchInfo

Return a DispatchInfo, containing relevant information of this dispatch. Read more
source§

impl<T: Config> PartialEq for Call<T>

source§

fn eq(&self, other: &Self) -> bool

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

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

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

impl<T> TypeInfo for Call<T>
where PhantomData<(T,)>: TypeInfo + 'static, OpaqueBundleOf<T>: TypeInfo + 'static, Box<FraudProofFor<T>>: TypeInfo + 'static, <T as Config>::Balance: TypeInfo + 'static, OperatorConfig<<T as Config>::Balance>: TypeInfo + 'static, DomainConfig<T::AccountId, <T as Config>::Balance>: TypeInfo + 'static, WithdrawStake<<T as Config>::Balance, T::Share>: TypeInfo + 'static, OperatorAllowList<T::AccountId>: TypeInfo + 'static, PermissionedActionAllowedBy<T::AccountId>: TypeInfo + 'static, ReceiptHashFor<T>: TypeInfo + 'static, T::AccountId: TypeInfo + 'static, SingletonReceiptOf<T>: TypeInfo + 'static, T: Config + 'static,

§

type Identity = Call<T>

The type identifying for which type info is provided. Read more
source§

fn type_info() -> Type

Returns the static type identifier for Self.
source§

impl<T: Config> UnfilteredDispatchable for Call<T>

§

type RuntimeOrigin = <T as Config>::RuntimeOrigin

The origin type of the runtime, (i.e. frame_system::Config::RuntimeOrigin).
source§

fn dispatch_bypass_filter( self, origin: Self::RuntimeOrigin, ) -> DispatchResultWithPostInfo

Dispatch this call but do not check the filter in origin.
source§

impl<T: Config> EncodeLike for Call<T>

source§

impl<T: Config> Eq for Call<T>

Auto Trait Implementations§

§

impl<T> Freeze for Call<T>
where <T as Config>::Hash: Sized + Freeze, <T as Config>::Balance: Freeze, <T as Config>::DomainHash: Freeze, <T as Config>::AccountId: Freeze, <T as Config>::Share: Freeze, <<T as Config>::DomainHeader as Header>::Number: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

§

impl<T> RefUnwindSafe for Call<T>
where <T as Config>::Hash: Sized + RefUnwindSafe, <T as Config>::Balance: RefUnwindSafe, <T as Config>::DomainHash: RefUnwindSafe, <T as Config>::AccountId: RefUnwindSafe, <T as Config>::Share: RefUnwindSafe, T: RefUnwindSafe, <<T as Config>::DomainHeader as Header>::Number: RefUnwindSafe, <<<T as Config>::Block as Block>::Header as Header>::Number: RefUnwindSafe, <T as Config>::MmrHash: RefUnwindSafe,

§

impl<T> Send for Call<T>
where <T as Config>::Hash: Sized, T: Send,

§

impl<T> Sync for Call<T>
where <T as Config>::Hash: Sized, T: Sync,

§

impl<T> Unpin for Call<T>
where <T as Config>::Hash: Sized + Unpin, <T as Config>::Balance: Unpin, <T as Config>::DomainHash: Unpin, <T as Config>::AccountId: Unpin, <T as Config>::Share: Unpin, T: Unpin, <<T as Config>::DomainHeader as Header>::Number: Unpin, <<<T as Config>::Block as Block>::Header as Header>::Number: Unpin,

§

impl<T> UnwindSafe for Call<T>
where <T as Config>::Hash: Sized + UnwindSafe, <T as Config>::Balance: UnwindSafe + RefUnwindSafe, <T as Config>::DomainHash: UnwindSafe, <T as Config>::AccountId: UnwindSafe + RefUnwindSafe, <T as Config>::Share: UnwindSafe, T: UnwindSafe, <<T as Config>::DomainHeader as Header>::Number: UnwindSafe, <<<T as Config>::Block as Block>::Header as Header>::Number: UnwindSafe, <T as Config>::MmrHash: 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
§

impl<T> CheckedConversion for T

§

fn checked_from<T>(t: T) -> Option<Self>
where Self: TryFrom<T>,

Convert from a value of T into an equivalent instance of Option<Self>. Read more
§

fn checked_into<T>(self) -> Option<T>
where Self: TryInto<T>,

Consume self to return Some equivalent value of Option<T>. Read more
source§

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

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> DecodeAll for T
where T: Decode,

§

fn decode_all(input: &mut &[u8]) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
§

impl<T> DecodeLimit for T
where T: Decode,

§

fn decode_all_with_depth_limit( limit: u32, input: &mut &[u8], ) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
§

fn decode_with_depth_limit<I>(limit: u32, input: &mut I) -> Result<T, Error>
where I: Input,

Decode Self with the given maximum recursion depth and advance input by the number of bytes consumed. Read more
source§

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

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

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

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

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

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

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

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

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

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FullLeaf for T
where T: Encode + Decode + Clone + PartialEq + Debug,

§

fn using_encoded<R, F>(&self, f: F, _compact: bool) -> R
where F: FnOnce(&[u8]) -> R,

Encode the leaf either in its full or compact form. Read more
§

impl<T> Hashable for T
where T: Codec,

§

fn blake2_128(&self) -> [u8; 16]

§

fn blake2_256(&self) -> [u8; 32]

§

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

§

fn twox_128(&self) -> [u8; 16]

§

fn twox_256(&self) -> [u8; 32]

§

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

§

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

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T, U> IntoKey<U> for T
where U: FromKey<T>,

§

fn into_key(self) -> U

§

impl<T> IsType<T> for T

§

fn from_ref(t: &T) -> &T

Cast reference.
§

fn into_ref(&self) -> &T

Cast reference.
§

fn from_mut(t: &mut T) -> &mut T

Cast mutable reference.
§

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

Cast mutable reference.
§

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

§

fn from_ref(outer: &Outer) -> &T

Get a reference to the inner from the outer.

§

fn from_mut(outer: &mut Outer) -> &mut T

Get a mutable reference to the inner from the outer.

§

impl<T> KeyedVec for T
where T: Codec,

§

fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8>

Return an encoding of Self prepended by given slice.
§

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
§

impl<T> SaturatedConversion for T

§

fn saturated_from<T>(t: T) -> Self
where Self: UniqueSaturatedFrom<T>,

Convert from a value of T into an equivalent instance of Self. Read more
§

fn saturated_into<T>(self) -> T
where Self: UniqueSaturatedInto<T>,

Consume self to return an equivalent value of T. Read more
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<T, U> TryIntoKey<U> for T
where U: TryFromKey<T>,

§

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

§

fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>

§

impl<S, T> UncheckedInto<T> for S
where T: UncheckedFrom<S>,

§

fn unchecked_into(self) -> T

The counterpart to unchecked_from.
§

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

§

fn unique_saturated_into(self) -> T

Consume self to return an equivalent value of T.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<S> Codec for S
where S: Decode + Encode,

§

impl<T> EncodeLike<&&T> for T
where T: Encode,

§

impl<T> EncodeLike<&T> for T
where T: Encode,

§

impl<T> EncodeLike<&mut T> for T
where T: Encode,

§

impl<T> EncodeLike<Arc<T>> for T
where T: Encode,

§

impl<T> EncodeLike<Box<T>> for T
where T: Encode,

§

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

§

impl<T> EncodeLike<Rc<T>> for T
where T: Encode,

§

impl<S> FullCodec for S
where S: Decode + FullEncode,

§

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

§

impl<T> JsonSchemaMaybe for T

§

impl<T> MaybeDebug for T
where T: Debug,

§

impl<T> MaybeRefUnwindSafe for T
where T: RefUnwindSafe,

§

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

§

impl<T> Parameter for T
where T: Codec + EncodeLike + Clone + Eq + Debug + TypeInfo,

§

impl<T> StaticTypeInfo for T
where T: TypeInfo + 'static,