pub struct DelegateActionView {
pub sender_id: AccountId,
pub receiver_id: AccountId,
pub actions: Vec<ActionView>,
pub nonce: u64,
pub max_block_height: u64,
pub public_key: PublicKey,
}Expand description
View of a delegate action in RPC responses.
Fields§
§sender_id: AccountIdThe account that signed the delegate action.
receiver_id: AccountIdThe intended receiver of the inner actions.
actions: Vec<ActionView>The actions to execute.
nonce: u64Nonce for replay protection.
max_block_height: u64Maximum block height before this delegate action expires.
public_key: PublicKeyPublic key of the signer.
Trait Implementations§
Source§impl Clone for DelegateActionView
impl Clone for DelegateActionView
Source§fn clone(&self) -> DelegateActionView
fn clone(&self) -> DelegateActionView
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DelegateActionView
impl Debug for DelegateActionView
Source§impl<'de> Deserialize<'de> for DelegateActionView
impl<'de> Deserialize<'de> for DelegateActionView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DelegateActionView
impl RefUnwindSafe for DelegateActionView
impl Send for DelegateActionView
impl Sync for DelegateActionView
impl Unpin for DelegateActionView
impl UnsafeUnpin for DelegateActionView
impl UnwindSafe for DelegateActionView
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more