pub struct SignedActionWithNonce<T, A, S>where
    T: Types,
    A: ActionWithNonce<T>,{
    pub action: A,
    pub signature: S,
    /* private fields */
}

Fields§

§action: A§signature: S

Implementations§

source§

impl<T, A, S> SignedActionWithNonce<T, A, S>where T: Types, A: ActionWithNonce<T>,

source

pub fn new(action: A, signature: S) -> SignedActionWithNonce<T, A, S>

source§

impl<T, A, Sig> SignedActionWithNonce<T, A, Sig>where T: Config, A: ActionWithNonce<T> + ToStateChange<T>, Sig: AuthorizeSignedAction<T, A>, <A as Action>::Target: Associated<T>, <Sig as Signature>::Signer: AuthorizeTarget<T, <A as Action>::Target, <Sig as Signature>::Key> + Deref, <<Sig as Signature>::Signer as Deref>::Target: AuthorizeTarget<T, <A as Action>::Target, <Sig as Signature>::Key>,

source

pub fn execute_without_target_data<F, S, R, E>( self, f: F ) -> Result<R, IntermediateError<T>>where F: FnOnce(A, <Sig as Signature>::Signer) -> Result<R, E>, E: Into<IntermediateError<T>>, <A as Action>::Target: StorageRef<T>, <<Sig as Signature>::Signer as Deref>::Target: StorageRef<T, Value = WithNonce<T, S>> + Clone,

Verifies signer’s signature and nonce, then executes given action without providing target data. In case of a successful result, increases the signer’s nonce.

source

pub fn execute_view<F, S, R, E>(self, f: F) -> Result<R, IntermediateError<T>>where F: FnOnce(A, <<A as Action>::Target as Associated<T>>::Value, <Sig as Signature>::Signer) -> Result<R, E>, E: Into<IntermediateError<T>>, <A as Action>::Target: StorageRef<T>, <<Sig as Signature>::Signer as Deref>::Target: StorageRef<T, Value = WithNonce<T, S>> + Clone,

Verifies signer’s signature and nonce, then executes given action providing a value associated with the target. In case of a successful result, increases the signer’s nonce.

source

pub fn execute<F, S, R, E>(self, f: F) -> Result<R, IntermediateError<T>>where F: FnOnce(A, &mut <<A as Action>::Target as Associated<T>>::Value, <Sig as Signature>::Signer) -> Result<R, E>, E: Into<IntermediateError<T>>, <A as Action>::Target: StorageRef<T>, <<Sig as Signature>::Signer as Deref>::Target: StorageRef<T, Value = WithNonce<T, S>> + Clone,

Verifies signer’s signature and nonce, then executes given action providing a mutable reference to the value associated with the target. In case of a successful result, commits all storage changes and increases the signer’s nonce.

source

pub fn execute_removable<F, S, R, E>( self, f: F ) -> Result<R, IntermediateError<T>>where F: FnOnce(A, &mut Option<<<A as Action>::Target as Associated<T>>::Value>, <Sig as Signature>::Signer) -> Result<R, E>, E: Into<IntermediateError<T>>, <A as Action>::Target: StorageRef<T>, <<Sig as Signature>::Signer as Deref>::Target: StorageRef<T, Value = WithNonce<T, S>> + Clone,

Verifies signer’s signature and nonce, then executes given action providing a mutable reference to the option containing a value associated with the target. In case of a successful result, commits all storage changes and increases the signer’s nonce.

source§

impl<T, A> SignedActionWithNonce<T, A, DidOrDidMethodKeySignature<Controller>>where A: ActionWithNonce<T, Target = Did> + ToStateChange<T>, DidOrDidMethodKeySignature<Controller>: AuthorizeSignedAction<T, A, Key = DidKeyOrDidMethodKey, Signer = Controller>, T: Config,

source

pub fn execute_from_controller<F, R, E>( self, f: F ) -> Result<R, IntermediateError<T>>where F: FnOnce(A, &mut OnChainDidDetails) -> Result<R, E>, E: Into<IntermediateError<T>>,

source

pub fn execute_removable_from_controller<F, R, E>( self, f: F ) -> Result<R, IntermediateError<T>>where F: FnOnce(A, &mut Option<OnChainDidDetails>) -> Result<R, E>, E: Into<IntermediateError<T>>,

Auto Trait Implementations§

§

impl<T, A, S> RefUnwindSafe for SignedActionWithNonce<T, A, S>where A: RefUnwindSafe, S: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, A, S> Send for SignedActionWithNonce<T, A, S>where A: Send, S: Send, T: Send,

§

impl<T, A, S> Sync for SignedActionWithNonce<T, A, S>where A: Sync, S: Sync, T: Sync,

§

impl<T, A, S> Unpin for SignedActionWithNonce<T, A, S>where A: Unpin, S: Unpin, T: Unpin,

§

impl<T, A, S> UnwindSafe for SignedActionWithNonce<T, A, S>where A: UnwindSafe, S: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CanUpdate<()> for T

source§

fn can_add(&self, _entity: &()) -> bool

Checks whether the new entity can be added.
source§

fn can_remove(&self, _entity: &()) -> bool

Checks whether the existing entity can be removed.
source§

fn can_replace(&self, _new: &(), _entity: &()) -> bool

Checks whether the provided entity can replace the existing one.
§

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
§

impl<T> Downcast for Twhere T: Any,

§

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>

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)

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)

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> DowncastSync for Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send + 'static>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

§

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 Twhere U: From<T>,

const: unstable · 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.

§

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 Twhere 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> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

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<T> for T

§

type Output = T

Should always be Self
§

impl<T> SaturatedConversion for T

§

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

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

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

Consume self to return an equivalent value of T. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn unchecked_into(self) -> T

The counterpart to unchecked_from.
§

impl<T, S> UniqueSaturatedInto<T> for Swhere 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 Twhere 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<T> JsonSchemaMaybe for T

§

impl<T> MaybeRefUnwindSafe for Twhere T: RefUnwindSafe,