Enum dock_core::common::state_change::StateChange
source · pub enum StateChange<'a, T: TypesAndLimits> {
Show 33 variants
AddKeys(Cow<'a, AddKeys<T>>),
AddControllers(Cow<'a, AddControllers<T>>),
RemoveKeys(Cow<'a, RemoveKeys<T>>),
RemoveControllers(Cow<'a, RemoveControllers<T>>),
AddServiceEndpoint(Cow<'a, AddServiceEndpoint<T>>),
RemoveServiceEndpoint(Cow<'a, RemoveServiceEndpoint<T>>),
DidRemoval(Cow<'a, DidRemoval<T>>),
Revoke(Cow<'a, Revoke<T>>),
UnRevoke(Cow<'a, UnRevoke<T>>),
RemoveRegistry(Cow<'a, RemoveRegistry<T>>),
AddBlob(Cow<'a, AddBlob<T>>),
MasterVote(Cow<'a, MasterVote<T>>),
SetAttestationClaim(Cow<'a, SetAttestationClaim<T>>),
AddOffchainSignatureParams(Cow<'a, AddOffchainSignatureParams<T>>),
AddOffchainSignaturePublicKey(Cow<'a, AddOffchainSignaturePublicKey<T>>),
RemoveOffchainSignatureParams(Cow<'a, RemoveOffchainSignatureParams<T>>),
RemoveOffchainSignaturePublicKey(Cow<'a, RemoveOffchainSignaturePublicKey<T>>),
AddAccumulatorParams(Cow<'a, AddAccumulatorParams<T>>),
AddAccumulatorPublicKey(Cow<'a, AddAccumulatorPublicKey<T>>),
RemoveAccumulatorParams(Cow<'a, RemoveAccumulatorParams<T>>),
RemoveAccumulatorPublicKey(Cow<'a, RemoveAccumulatorPublicKey<T>>),
AddAccumulator(Cow<'a, AddAccumulator<T>>),
UpdateAccumulator(Cow<'a, UpdateAccumulator<T>>),
RemoveAccumulator(Cow<'a, RemoveAccumulator<T>>),
UpdateStatusListCredential(Cow<'a, UpdateStatusListCredential<T>>),
RemoveStatusListCredential(Cow<'a, RemoveStatusListCredential<T>>),
InitOrUpdateTrustRegistry(Cow<'a, InitOrUpdateTrustRegistry<T>>),
SetSchemasMetadata(Cow<'a, SetSchemasMetadata<T>>),
UpdateDelegatedIssuers(Cow<'a, UpdateDelegatedIssuers<T>>),
SuspendIssuers(Cow<'a, SuspendIssuers<T>>),
UnsuspendIssuers(Cow<'a, UnsuspendIssuers<T>>),
ChangeParticipants(Cow<'a, ChangeParticipants<T>>),
SetParticipantInformation(Cow<'a, SetParticipantInformation<T>>),
}
Expand description
Any state change that needs to be signed is first wrapped in this enum and then its serialized.
This is done to make it unambiguous which command was intended as the SCALE codec’s
not self describing. The enum variants are supposed to take care of replay protection by having a
nonce or something else. A better approach would have been to make StateChange
aware of nonce or nonces.
There can be multiple nonces attached with a payload a multiple DIDs may take part in an action and they
will have their own nonce. However this change will be a major disruption for now.
Never change the order of variants in this enum
Variants§
AddKeys(Cow<'a, AddKeys<T>>)
AddControllers(Cow<'a, AddControllers<T>>)
RemoveKeys(Cow<'a, RemoveKeys<T>>)
RemoveControllers(Cow<'a, RemoveControllers<T>>)
AddServiceEndpoint(Cow<'a, AddServiceEndpoint<T>>)
RemoveServiceEndpoint(Cow<'a, RemoveServiceEndpoint<T>>)
DidRemoval(Cow<'a, DidRemoval<T>>)
Revoke(Cow<'a, Revoke<T>>)
UnRevoke(Cow<'a, UnRevoke<T>>)
RemoveRegistry(Cow<'a, RemoveRegistry<T>>)
AddBlob(Cow<'a, AddBlob<T>>)
MasterVote(Cow<'a, MasterVote<T>>)
SetAttestationClaim(Cow<'a, SetAttestationClaim<T>>)
AddOffchainSignatureParams(Cow<'a, AddOffchainSignatureParams<T>>)
AddOffchainSignaturePublicKey(Cow<'a, AddOffchainSignaturePublicKey<T>>)
RemoveOffchainSignatureParams(Cow<'a, RemoveOffchainSignatureParams<T>>)
RemoveOffchainSignaturePublicKey(Cow<'a, RemoveOffchainSignaturePublicKey<T>>)
AddAccumulatorParams(Cow<'a, AddAccumulatorParams<T>>)
AddAccumulatorPublicKey(Cow<'a, AddAccumulatorPublicKey<T>>)
RemoveAccumulatorParams(Cow<'a, RemoveAccumulatorParams<T>>)
RemoveAccumulatorPublicKey(Cow<'a, RemoveAccumulatorPublicKey<T>>)
AddAccumulator(Cow<'a, AddAccumulator<T>>)
UpdateAccumulator(Cow<'a, UpdateAccumulator<T>>)
RemoveAccumulator(Cow<'a, RemoveAccumulator<T>>)
UpdateStatusListCredential(Cow<'a, UpdateStatusListCredential<T>>)
RemoveStatusListCredential(Cow<'a, RemoveStatusListCredential<T>>)
InitOrUpdateTrustRegistry(Cow<'a, InitOrUpdateTrustRegistry<T>>)
SetSchemasMetadata(Cow<'a, SetSchemasMetadata<T>>)
UpdateDelegatedIssuers(Cow<'a, UpdateDelegatedIssuers<T>>)
SuspendIssuers(Cow<'a, SuspendIssuers<T>>)
UnsuspendIssuers(Cow<'a, UnsuspendIssuers<T>>)
ChangeParticipants(Cow<'a, ChangeParticipants<T>>)
SetParticipantInformation(Cow<'a, SetParticipantInformation<T>>)
Trait Implementations§
source§impl<'a, T: TypesAndLimits> Clone for StateChange<'a, T>
impl<'a, T: TypesAndLimits> Clone for StateChange<'a, T>
source§impl<'a, T: TypesAndLimits> Debug for StateChange<'a, T>
impl<'a, T: TypesAndLimits> Debug for StateChange<'a, T>
source§impl<'a, T: TypesAndLimits> Decode for StateChange<'a, T>where
Cow<'a, AddKeys<T>>: Decode,
Cow<'a, AddControllers<T>>: Decode,
Cow<'a, RemoveKeys<T>>: Decode,
Cow<'a, RemoveControllers<T>>: Decode,
Cow<'a, AddServiceEndpoint<T>>: Decode,
Cow<'a, RemoveServiceEndpoint<T>>: Decode,
Cow<'a, DidRemoval<T>>: Decode,
Cow<'a, Revoke<T>>: Decode,
Cow<'a, UnRevoke<T>>: Decode,
Cow<'a, RemoveRegistry<T>>: Decode,
Cow<'a, AddBlob<T>>: Decode,
Cow<'a, MasterVote<T>>: Decode,
Cow<'a, SetAttestationClaim<T>>: Decode,
Cow<'a, AddOffchainSignatureParams<T>>: Decode,
Cow<'a, AddOffchainSignaturePublicKey<T>>: Decode,
Cow<'a, RemoveOffchainSignatureParams<T>>: Decode,
Cow<'a, RemoveOffchainSignaturePublicKey<T>>: Decode,
Cow<'a, AddAccumulatorParams<T>>: Decode,
Cow<'a, AddAccumulatorPublicKey<T>>: Decode,
Cow<'a, RemoveAccumulatorParams<T>>: Decode,
Cow<'a, RemoveAccumulatorPublicKey<T>>: Decode,
Cow<'a, AddAccumulator<T>>: Decode,
Cow<'a, UpdateAccumulator<T>>: Decode,
Cow<'a, RemoveAccumulator<T>>: Decode,
Cow<'a, UpdateStatusListCredential<T>>: Decode,
Cow<'a, RemoveStatusListCredential<T>>: Decode,
Cow<'a, InitOrUpdateTrustRegistry<T>>: Decode,
Cow<'a, SetSchemasMetadata<T>>: Decode,
Cow<'a, UpdateDelegatedIssuers<T>>: Decode,
Cow<'a, SuspendIssuers<T>>: Decode,
Cow<'a, UnsuspendIssuers<T>>: Decode,
Cow<'a, ChangeParticipants<T>>: Decode,
Cow<'a, SetParticipantInformation<T>>: Decode,
impl<'a, T: TypesAndLimits> Decode for StateChange<'a, T>where Cow<'a, AddKeys<T>>: Decode, Cow<'a, AddControllers<T>>: Decode, Cow<'a, RemoveKeys<T>>: Decode, Cow<'a, RemoveControllers<T>>: Decode, Cow<'a, AddServiceEndpoint<T>>: Decode, Cow<'a, RemoveServiceEndpoint<T>>: Decode, Cow<'a, DidRemoval<T>>: Decode, Cow<'a, Revoke<T>>: Decode, Cow<'a, UnRevoke<T>>: Decode, Cow<'a, RemoveRegistry<T>>: Decode, Cow<'a, AddBlob<T>>: Decode, Cow<'a, MasterVote<T>>: Decode, Cow<'a, SetAttestationClaim<T>>: Decode, Cow<'a, AddOffchainSignatureParams<T>>: Decode, Cow<'a, AddOffchainSignaturePublicKey<T>>: Decode, Cow<'a, RemoveOffchainSignatureParams<T>>: Decode, Cow<'a, RemoveOffchainSignaturePublicKey<T>>: Decode, Cow<'a, AddAccumulatorParams<T>>: Decode, Cow<'a, AddAccumulatorPublicKey<T>>: Decode, Cow<'a, RemoveAccumulatorParams<T>>: Decode, Cow<'a, RemoveAccumulatorPublicKey<T>>: Decode, Cow<'a, AddAccumulator<T>>: Decode, Cow<'a, UpdateAccumulator<T>>: Decode, Cow<'a, RemoveAccumulator<T>>: Decode, Cow<'a, UpdateStatusListCredential<T>>: Decode, Cow<'a, RemoveStatusListCredential<T>>: Decode, Cow<'a, InitOrUpdateTrustRegistry<T>>: Decode, Cow<'a, SetSchemasMetadata<T>>: Decode, Cow<'a, UpdateDelegatedIssuers<T>>: Decode, Cow<'a, SuspendIssuers<T>>: Decode, Cow<'a, UnsuspendIssuers<T>>: Decode, Cow<'a, ChangeParticipants<T>>: Decode, Cow<'a, SetParticipantInformation<T>>: Decode,
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
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,
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,
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>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
source§impl<'a, T: TypesAndLimits> Encode for StateChange<'a, T>where
Cow<'a, AddKeys<T>>: Encode,
Cow<'a, AddControllers<T>>: Encode,
Cow<'a, RemoveKeys<T>>: Encode,
Cow<'a, RemoveControllers<T>>: Encode,
Cow<'a, AddServiceEndpoint<T>>: Encode,
Cow<'a, RemoveServiceEndpoint<T>>: Encode,
Cow<'a, DidRemoval<T>>: Encode,
Cow<'a, Revoke<T>>: Encode,
Cow<'a, UnRevoke<T>>: Encode,
Cow<'a, RemoveRegistry<T>>: Encode,
Cow<'a, AddBlob<T>>: Encode,
Cow<'a, MasterVote<T>>: Encode,
Cow<'a, SetAttestationClaim<T>>: Encode,
Cow<'a, AddOffchainSignatureParams<T>>: Encode,
Cow<'a, AddOffchainSignaturePublicKey<T>>: Encode,
Cow<'a, RemoveOffchainSignatureParams<T>>: Encode,
Cow<'a, RemoveOffchainSignaturePublicKey<T>>: Encode,
Cow<'a, AddAccumulatorParams<T>>: Encode,
Cow<'a, AddAccumulatorPublicKey<T>>: Encode,
Cow<'a, RemoveAccumulatorParams<T>>: Encode,
Cow<'a, RemoveAccumulatorPublicKey<T>>: Encode,
Cow<'a, AddAccumulator<T>>: Encode,
Cow<'a, UpdateAccumulator<T>>: Encode,
Cow<'a, RemoveAccumulator<T>>: Encode,
Cow<'a, UpdateStatusListCredential<T>>: Encode,
Cow<'a, RemoveStatusListCredential<T>>: Encode,
Cow<'a, InitOrUpdateTrustRegistry<T>>: Encode,
Cow<'a, SetSchemasMetadata<T>>: Encode,
Cow<'a, UpdateDelegatedIssuers<T>>: Encode,
Cow<'a, SuspendIssuers<T>>: Encode,
Cow<'a, UnsuspendIssuers<T>>: Encode,
Cow<'a, ChangeParticipants<T>>: Encode,
Cow<'a, SetParticipantInformation<T>>: Encode,
impl<'a, T: TypesAndLimits> Encode for StateChange<'a, T>where Cow<'a, AddKeys<T>>: Encode, Cow<'a, AddControllers<T>>: Encode, Cow<'a, RemoveKeys<T>>: Encode, Cow<'a, RemoveControllers<T>>: Encode, Cow<'a, AddServiceEndpoint<T>>: Encode, Cow<'a, RemoveServiceEndpoint<T>>: Encode, Cow<'a, DidRemoval<T>>: Encode, Cow<'a, Revoke<T>>: Encode, Cow<'a, UnRevoke<T>>: Encode, Cow<'a, RemoveRegistry<T>>: Encode, Cow<'a, AddBlob<T>>: Encode, Cow<'a, MasterVote<T>>: Encode, Cow<'a, SetAttestationClaim<T>>: Encode, Cow<'a, AddOffchainSignatureParams<T>>: Encode, Cow<'a, AddOffchainSignaturePublicKey<T>>: Encode, Cow<'a, RemoveOffchainSignatureParams<T>>: Encode, Cow<'a, RemoveOffchainSignaturePublicKey<T>>: Encode, Cow<'a, AddAccumulatorParams<T>>: Encode, Cow<'a, AddAccumulatorPublicKey<T>>: Encode, Cow<'a, RemoveAccumulatorParams<T>>: Encode, Cow<'a, RemoveAccumulatorPublicKey<T>>: Encode, Cow<'a, AddAccumulator<T>>: Encode, Cow<'a, UpdateAccumulator<T>>: Encode, Cow<'a, RemoveAccumulator<T>>: Encode, Cow<'a, UpdateStatusListCredential<T>>: Encode, Cow<'a, RemoveStatusListCredential<T>>: Encode, Cow<'a, InitOrUpdateTrustRegistry<T>>: Encode, Cow<'a, SetSchemasMetadata<T>>: Encode, Cow<'a, UpdateDelegatedIssuers<T>>: Encode, Cow<'a, SuspendIssuers<T>>: Encode, Cow<'a, UnsuspendIssuers<T>>: Encode, Cow<'a, ChangeParticipants<T>>: Encode, Cow<'a, SetParticipantInformation<T>>: Encode,
source§fn size_hint(&self) -> usize
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
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )
Convert self to a slice and append it to the destination.
§fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,
Convert self to a slice and then invoke the given closure with it.
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
source§impl<'a, T: TypesAndLimits> PartialEq<StateChange<'a, T>> for StateChange<'a, T>
impl<'a, T: TypesAndLimits> PartialEq<StateChange<'a, T>> for StateChange<'a, T>
source§impl<'a, T> TypeInfo for StateChange<'a, T>where
Cow<'a, AddKeys<T>>: TypeInfo + 'static,
Cow<'a, AddControllers<T>>: TypeInfo + 'static,
Cow<'a, RemoveKeys<T>>: TypeInfo + 'static,
Cow<'a, RemoveControllers<T>>: TypeInfo + 'static,
Cow<'a, AddServiceEndpoint<T>>: TypeInfo + 'static,
Cow<'a, RemoveServiceEndpoint<T>>: TypeInfo + 'static,
Cow<'a, DidRemoval<T>>: TypeInfo + 'static,
Cow<'a, Revoke<T>>: TypeInfo + 'static,
Cow<'a, UnRevoke<T>>: TypeInfo + 'static,
Cow<'a, RemoveRegistry<T>>: TypeInfo + 'static,
Cow<'a, AddBlob<T>>: TypeInfo + 'static,
Cow<'a, MasterVote<T>>: TypeInfo + 'static,
Cow<'a, SetAttestationClaim<T>>: TypeInfo + 'static,
Cow<'a, AddOffchainSignatureParams<T>>: TypeInfo + 'static,
Cow<'a, AddOffchainSignaturePublicKey<T>>: TypeInfo + 'static,
Cow<'a, RemoveOffchainSignatureParams<T>>: TypeInfo + 'static,
Cow<'a, RemoveOffchainSignaturePublicKey<T>>: TypeInfo + 'static,
Cow<'a, AddAccumulatorParams<T>>: TypeInfo + 'static,
Cow<'a, AddAccumulatorPublicKey<T>>: TypeInfo + 'static,
Cow<'a, RemoveAccumulatorParams<T>>: TypeInfo + 'static,
Cow<'a, RemoveAccumulatorPublicKey<T>>: TypeInfo + 'static,
Cow<'a, AddAccumulator<T>>: TypeInfo + 'static,
Cow<'a, UpdateAccumulator<T>>: TypeInfo + 'static,
Cow<'a, RemoveAccumulator<T>>: TypeInfo + 'static,
Cow<'a, UpdateStatusListCredential<T>>: TypeInfo + 'static,
Cow<'a, RemoveStatusListCredential<T>>: TypeInfo + 'static,
Cow<'a, InitOrUpdateTrustRegistry<T>>: TypeInfo + 'static,
Cow<'a, SetSchemasMetadata<T>>: TypeInfo + 'static,
Cow<'a, UpdateDelegatedIssuers<T>>: TypeInfo + 'static,
Cow<'a, SuspendIssuers<T>>: TypeInfo + 'static,
Cow<'a, UnsuspendIssuers<T>>: TypeInfo + 'static,
Cow<'a, ChangeParticipants<T>>: TypeInfo + 'static,
Cow<'a, SetParticipantInformation<T>>: TypeInfo + 'static,
T: TypesAndLimits + 'static,
'a: 'static,
impl<'a, T> TypeInfo for StateChange<'a, T>where Cow<'a, AddKeys<T>>: TypeInfo + 'static, Cow<'a, AddControllers<T>>: TypeInfo + 'static, Cow<'a, RemoveKeys<T>>: TypeInfo + 'static, Cow<'a, RemoveControllers<T>>: TypeInfo + 'static, Cow<'a, AddServiceEndpoint<T>>: TypeInfo + 'static, Cow<'a, RemoveServiceEndpoint<T>>: TypeInfo + 'static, Cow<'a, DidRemoval<T>>: TypeInfo + 'static, Cow<'a, Revoke<T>>: TypeInfo + 'static, Cow<'a, UnRevoke<T>>: TypeInfo + 'static, Cow<'a, RemoveRegistry<T>>: TypeInfo + 'static, Cow<'a, AddBlob<T>>: TypeInfo + 'static, Cow<'a, MasterVote<T>>: TypeInfo + 'static, Cow<'a, SetAttestationClaim<T>>: TypeInfo + 'static, Cow<'a, AddOffchainSignatureParams<T>>: TypeInfo + 'static, Cow<'a, AddOffchainSignaturePublicKey<T>>: TypeInfo + 'static, Cow<'a, RemoveOffchainSignatureParams<T>>: TypeInfo + 'static, Cow<'a, RemoveOffchainSignaturePublicKey<T>>: TypeInfo + 'static, Cow<'a, AddAccumulatorParams<T>>: TypeInfo + 'static, Cow<'a, AddAccumulatorPublicKey<T>>: TypeInfo + 'static, Cow<'a, RemoveAccumulatorParams<T>>: TypeInfo + 'static, Cow<'a, RemoveAccumulatorPublicKey<T>>: TypeInfo + 'static, Cow<'a, AddAccumulator<T>>: TypeInfo + 'static, Cow<'a, UpdateAccumulator<T>>: TypeInfo + 'static, Cow<'a, RemoveAccumulator<T>>: TypeInfo + 'static, Cow<'a, UpdateStatusListCredential<T>>: TypeInfo + 'static, Cow<'a, RemoveStatusListCredential<T>>: TypeInfo + 'static, Cow<'a, InitOrUpdateTrustRegistry<T>>: TypeInfo + 'static, Cow<'a, SetSchemasMetadata<T>>: TypeInfo + 'static, Cow<'a, UpdateDelegatedIssuers<T>>: TypeInfo + 'static, Cow<'a, SuspendIssuers<T>>: TypeInfo + 'static, Cow<'a, UnsuspendIssuers<T>>: TypeInfo + 'static, Cow<'a, ChangeParticipants<T>>: TypeInfo + 'static, Cow<'a, SetParticipantInformation<T>>: TypeInfo + 'static, T: TypesAndLimits + 'static, 'a: 'static,
impl<'a, T: TypesAndLimits> EncodeLike<StateChange<'a, T>> for StateChange<'a, T>where Cow<'a, AddKeys<T>>: Encode, Cow<'a, AddControllers<T>>: Encode, Cow<'a, RemoveKeys<T>>: Encode, Cow<'a, RemoveControllers<T>>: Encode, Cow<'a, AddServiceEndpoint<T>>: Encode, Cow<'a, RemoveServiceEndpoint<T>>: Encode, Cow<'a, DidRemoval<T>>: Encode, Cow<'a, Revoke<T>>: Encode, Cow<'a, UnRevoke<T>>: Encode, Cow<'a, RemoveRegistry<T>>: Encode, Cow<'a, AddBlob<T>>: Encode, Cow<'a, MasterVote<T>>: Encode, Cow<'a, SetAttestationClaim<T>>: Encode, Cow<'a, AddOffchainSignatureParams<T>>: Encode, Cow<'a, AddOffchainSignaturePublicKey<T>>: Encode, Cow<'a, RemoveOffchainSignatureParams<T>>: Encode, Cow<'a, RemoveOffchainSignaturePublicKey<T>>: Encode, Cow<'a, AddAccumulatorParams<T>>: Encode, Cow<'a, AddAccumulatorPublicKey<T>>: Encode, Cow<'a, RemoveAccumulatorParams<T>>: Encode, Cow<'a, RemoveAccumulatorPublicKey<T>>: Encode, Cow<'a, AddAccumulator<T>>: Encode, Cow<'a, UpdateAccumulator<T>>: Encode, Cow<'a, RemoveAccumulator<T>>: Encode, Cow<'a, UpdateStatusListCredential<T>>: Encode, Cow<'a, RemoveStatusListCredential<T>>: Encode, Cow<'a, InitOrUpdateTrustRegistry<T>>: Encode, Cow<'a, SetSchemasMetadata<T>>: Encode, Cow<'a, UpdateDelegatedIssuers<T>>: Encode, Cow<'a, SuspendIssuers<T>>: Encode, Cow<'a, UnsuspendIssuers<T>>: Encode, Cow<'a, ChangeParticipants<T>>: Encode, Cow<'a, SetParticipantInformation<T>>: Encode,
Auto Trait Implementations§
impl<'a, T> RefUnwindSafe for StateChange<'a, T>where T: RefUnwindSafe, <T as Types>::BlockNumber: RefUnwindSafe, <T as Limits>::MaxAccumulatorAccumulatedSize: RefUnwindSafe, <T as Limits>::MaxAccumulatorLabelSize: RefUnwindSafe, <T as Limits>::MaxAccumulatorParamsSize: RefUnwindSafe, <T as Limits>::MaxAccumulatorPublicKeySize: RefUnwindSafe, <T as Limits>::MaxBBDT16PublicKeySize: RefUnwindSafe, <T as Limits>::MaxBBSPlusPublicKeySize: RefUnwindSafe, <T as Limits>::MaxBBSPublicKeySize: RefUnwindSafe, <T as Limits>::MaxDidServiceEndpointIdSize: RefUnwindSafe, <T as Limits>::MaxDidServiceEndpointOriginSize: RefUnwindSafe, <T as Limits>::MaxDidServiceEndpointOrigins: RefUnwindSafe, <T as Limits>::MaxIriSize: RefUnwindSafe, <T as Limits>::MaxOffchainParamsBytesSize: RefUnwindSafe, <T as Limits>::MaxOffchainParamsLabelSize: RefUnwindSafe, <T as Limits>::MaxPSPublicKeySize: RefUnwindSafe, <T as Limits>::MaxStatusListCredentialSize: RefUnwindSafe,
impl<'a, T> Send for StateChange<'a, T>where T: Send + Sync,
impl<'a, T> Sync for StateChange<'a, T>where T: Sync,
impl<'a, T> Unpin for StateChange<'a, T>where T: Unpin, <T as Types>::BlockNumber: Unpin, <T as Limits>::MaxAccumulatorAccumulatedSize: Unpin, <T as Limits>::MaxAccumulatorLabelSize: Unpin, <T as Limits>::MaxAccumulatorParamsSize: Unpin, <T as Limits>::MaxAccumulatorPublicKeySize: Unpin, <T as Limits>::MaxBBDT16PublicKeySize: Unpin, <T as Limits>::MaxBBSPlusPublicKeySize: Unpin, <T as Limits>::MaxBBSPublicKeySize: Unpin, <T as Limits>::MaxDidServiceEndpointIdSize: Unpin, <T as Limits>::MaxDidServiceEndpointOriginSize: Unpin, <T as Limits>::MaxDidServiceEndpointOrigins: Unpin, <T as Limits>::MaxIriSize: Unpin, <T as Limits>::MaxOffchainParamsBytesSize: Unpin, <T as Limits>::MaxOffchainParamsLabelSize: Unpin, <T as Limits>::MaxPSPublicKeySize: Unpin, <T as Limits>::MaxStatusListCredentialSize: Unpin,
impl<'a, T> UnwindSafe for StateChange<'a, T>where T: UnwindSafe + RefUnwindSafe, <T as Types>::BlockNumber: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxAccumulatorAccumulatedSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxAccumulatorLabelSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxAccumulatorParamsSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxAccumulatorPublicKeySize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxBBDT16PublicKeySize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxBBSPlusPublicKeySize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxBBSPublicKeySize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxDidServiceEndpointIdSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxDidServiceEndpointOriginSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxDidServiceEndpointOrigins: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxIriSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxOffchainParamsBytesSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxOffchainParamsLabelSize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxPSPublicKeySize: UnwindSafe + RefUnwindSafe, <T as Limits>::MaxStatusListCredentialSize: UnwindSafe + RefUnwindSafe,
Blanket Implementations§
source§impl<T> CanUpdate<()> for T
impl<T> CanUpdate<()> for T
source§fn can_remove(&self, _entity: &()) -> bool
fn can_remove(&self, _entity: &()) -> bool
Checks whether the existing entity can be removed.
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where Self: TryInto<T>,
§impl<T> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
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 Twhere
T: Decode,
impl<T> DecodeLimit for Twhere T: Decode,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> Hashable for Twhere
T: Codec,
impl<T> Hashable for Twhere T: Codec,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T> KeyedVec for Twhere
T: Codec,
impl<T> KeyedVec for Twhere T: Codec,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.