Trait dock_core::util::action::Action

source ·
pub trait Action: Sized {
    type Target;

    // Required methods
    fn target(&self) -> Self::Target;
    fn len(&self) -> u32;

    // Provided methods
    fn is_empty(&self) -> bool { ... }
    fn modify<T, S, F, R, E>(self, f: F) -> Result<R, E>
       where F: FnOnce(Self, &mut S) -> Result<R, E>,
             <Self::Target as Associated<T>>::Value: TryInto<S>,
             S: Into<<Self::Target as Associated<T>>::Value>,
             E: From<ActionExecutionError> + From<NonceError>,
             Self::Target: StorageRef<T> { ... }
    fn view<T, S, F, R, E>(self, f: F) -> Result<R, E>
       where F: FnOnce(Self, S) -> Result<R, E>,
             <Self::Target as Associated<T>>::Value: TryInto<S>,
             S: Into<<Self::Target as Associated<T>>::Value>,
             E: From<ActionExecutionError> + From<NonceError>,
             Self::Target: StorageRef<T> { ... }
    fn modify_removable<T, S, F, R, E>(self, f: F) -> Result<R, E>
       where F: FnOnce(Self, &mut Option<S>) -> Result<R, E>,
             <Self::Target as Associated<T>>::Value: TryInto<S>,
             S: Into<<Self::Target as Associated<T>>::Value>,
             E: From<ActionExecutionError> + From<NonceError>,
             Self::Target: StorageRef<T> { ... }
    fn multi_signed<T, S, SI>(
        self,
        signatures: SI
    ) -> MultiSignedAction<T, Self, S, SI::IntoIter>
       where T: Types,
             S: Signature,
             SI: IntoIterator,
             SI::IntoIter: FusedIterator<Item = SignatureWithNonce<T::BlockNumber, S>> { ... }
}
Expand description

Describes an action which can be performed on some Target.

Required Associated Types§

source

type Target

Action target.

Required Methods§

source

fn target(&self) -> Self::Target

Returns underlying action target.

source

fn len(&self) -> u32

Returns action unit length.

Provided Methods§

source

fn is_empty(&self) -> bool

Returns true if the action unit count is equal to zero.

source

fn modify<T, S, F, R, E>(self, f: F) -> Result<R, E>where F: FnOnce(Self, &mut S) -> Result<R, E>, <Self::Target as Associated<T>>::Value: TryInto<S>, S: Into<<Self::Target as Associated<T>>::Value>, E: From<ActionExecutionError> + From<NonceError>, Self::Target: StorageRef<T>,

Calls supplied function accepting an action along with a mutable reference to the value associated with the target.

source

fn view<T, S, F, R, E>(self, f: F) -> Result<R, E>where F: FnOnce(Self, S) -> Result<R, E>, <Self::Target as Associated<T>>::Value: TryInto<S>, S: Into<<Self::Target as Associated<T>>::Value>, E: From<ActionExecutionError> + From<NonceError>, Self::Target: StorageRef<T>,

Calls supplied function accepting an action along with a value associated with the target.

source

fn modify_removable<T, S, F, R, E>(self, f: F) -> Result<R, E>where F: FnOnce(Self, &mut Option<S>) -> Result<R, E>, <Self::Target as Associated<T>>::Value: TryInto<S>, S: Into<<Self::Target as Associated<T>>::Value>, E: From<ActionExecutionError> + From<NonceError>, Self::Target: StorageRef<T>,

Calls supplied function accepting an action along with a mutable reference to the option possibly containing a value associated with the target. Modifying supplied Option<_> to None will lead to the value removal.

source

fn multi_signed<T, S, SI>( self, signatures: SI ) -> MultiSignedAction<T, Self, S, SI::IntoIter>where T: Types, S: Signature, SI: IntoIterator, SI::IntoIter: FusedIterator<Item = SignatureWithNonce<T::BlockNumber, S>>,

Combines underlying action with the provided signatures.

Implementors§

source§

impl<A: Action, Ta: Clone> Action for ActionWrapper<A, Ta>

§

type Target = Ta

source§

impl<T: TypesAndLimits> Action for AddAccumulator<T>

source§

impl<T: TypesAndLimits> Action for AddAccumulatorParams<T>

§

type Target = ()

source§

impl<T: TypesAndLimits> Action for AddAccumulatorPublicKey<T>

§

type Target = ()

source§

impl<T: TypesAndLimits> Action for RemoveAccumulator<T>

source§

impl<T: TypesAndLimits> Action for RemoveAccumulatorParams<T>

source§

impl<T: TypesAndLimits> Action for RemoveAccumulatorPublicKey<T>

source§

impl<T: TypesAndLimits> Action for UpdateAccumulator<T>

source§

impl<T: TypesAndLimits> Action for SetAttestationClaim<T>

§

type Target = ()

source§

impl<T: TypesAndLimits> Action for AddBlob<T>

source§

impl<T: TypesAndLimits> Action for AddControllers<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for AddKeys<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for AddServiceEndpoint<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for DidRemoval<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for RemoveControllers<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for RemoveKeys<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for RemoveServiceEndpoint<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for MasterVoteRaw<T>

§

type Target = ()

source§

impl<T: TypesAndLimits> Action for AddOffchainSignatureParams<T>

§

type Target = ()

source§

impl<T: TypesAndLimits> Action for AddOffchainSignaturePublicKey<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for RemoveOffchainSignatureParams<T>

§

type Target = ()

source§

impl<T: TypesAndLimits> Action for RemoveOffchainSignaturePublicKey<T>

§

type Target = Did

source§

impl<T: TypesAndLimits> Action for AddRegistry<T>

source§

impl<T: TypesAndLimits> Action for RemoveRegistryRaw<T>

source§

impl<T: TypesAndLimits> Action for RevokeRaw<T>

source§

impl<T: TypesAndLimits> Action for UnRevokeRaw<T>

source§

impl<T: TypesAndLimits> Action for AddStatusListCredential<T>

source§

impl<T: TypesAndLimits> Action for RemoveStatusListCredentialRaw<T>

source§

impl<T: TypesAndLimits> Action for UpdateStatusListCredentialRaw<T>

source§

impl<T: TypesAndLimits> Action for ChangeParticipantsRaw<T>

source§

impl<T: TypesAndLimits> Action for InitOrUpdateTrustRegistry<T>

source§

impl<T: TypesAndLimits> Action for SetParticipantInformationRaw<T>

source§

impl<T: TypesAndLimits> Action for SetSchemasMetadata<T>

source§

impl<T: TypesAndLimits> Action for SuspendIssuers<T>

source§

impl<T: TypesAndLimits> Action for UnsuspendIssuers<T>

source§

impl<T: TypesAndLimits> Action for UpdateDelegatedIssuers<T>

source§

impl<T: TypesAndLimits> Action for MasterVote<T>

§

type Target = ()

source§

impl<T: TypesAndLimits> Action for RemoveRegistry<T>

source§

impl<T: TypesAndLimits> Action for Revoke<T>

source§

impl<T: TypesAndLimits> Action for UnRevoke<T>

source§

impl<T: TypesAndLimits> Action for RemoveStatusListCredential<T>

source§

impl<T: TypesAndLimits> Action for UpdateStatusListCredential<T>

source§

impl<T: TypesAndLimits> Action for ChangeParticipants<T>

source§

impl<T: TypesAndLimits> Action for SetParticipantInformation<T>

source§

impl<T: Types, A: Action, Ta: Clone> Action for ActionWithNonceWrapper<T, A, Ta>

§

type Target = Ta