Enum unc_primitives::views::ActionView
source · pub enum ActionView {
CreateAccount,
DeployContract {
code: Vec<u8>,
},
FunctionCall {
method_name: String,
args: FunctionArgs,
gas: Gas,
deposit: Balance,
},
Transfer {
deposit: Balance,
},
Pledge {
pledge: Balance,
public_key: PublicKey,
},
AddKey {
public_key: PublicKey,
access_key: AccessKeyView,
},
DeleteKey {
public_key: PublicKey,
},
DeleteAccount {
beneficiary_id: AccountId,
},
Delegate {
delegate_action: DelegateAction,
signature: Signature,
},
RegisterRsa2048Keys {
public_key: PublicKey,
operation_type: u8,
args: Vec<u8>,
},
CreateRsa2048Challenge {
public_key: PublicKey,
challenge_key: PublicKey,
args: Vec<u8>,
},
}Variants§
CreateAccount
DeployContract
FunctionCall
Transfer
Pledge
AddKey
DeleteKey
DeleteAccount
Delegate
RegisterRsa2048Keys
CreateRsa2048Challenge
Trait Implementations§
source§impl BorshDeserialize for ActionView
impl BorshDeserialize for ActionView
fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshSerialize for ActionView
impl BorshSerialize for ActionView
source§impl Clone for ActionView
impl Clone for ActionView
source§fn clone(&self) -> ActionView
fn clone(&self) -> ActionView
Returns a copy 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 ActionView
impl Debug for ActionView
source§impl<'de> Deserialize<'de> for ActionView
impl<'de> Deserialize<'de> for ActionView
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
source§impl EnumExt for ActionView
impl EnumExt for ActionView
source§impl From<Action> for ActionView
impl From<Action> for ActionView
source§impl PartialEq for ActionView
impl PartialEq for ActionView
source§fn eq(&self, other: &ActionView) -> bool
fn eq(&self, other: &ActionView) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ActionView
impl Serialize for ActionView
source§impl TryFrom<ActionView> for Action
impl TryFrom<ActionView> for Action
impl Eq for ActionView
impl StructuralPartialEq for ActionView
Auto Trait Implementations§
impl Freeze for ActionView
impl RefUnwindSafe for ActionView
impl Send for ActionView
impl Sync for ActionView
impl Unpin for ActionView
impl UnwindSafe for ActionView
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.