pub enum ActionType {
Call,
Create,
CallResult,
CreateResult,
InternalTransferAction,
SetAuth,
SelfDestruct,
}
Expand description
Auto-generated discriminant enum variants
Variants§
Call
It’s a call action.
Create
It’s a create action.
CallResult
It’s the result of a call action
CreateResult
It’s the result of a create action
InternalTransferAction
It’s an internal transfer action
SetAuth
It’s an 7702 set auth action
SelfDestruct
It’s a selfdestruct action
Trait Implementations§
Source§impl Clone for ActionType
impl Clone for ActionType
Source§fn clone(&self) -> ActionType
fn clone(&self) -> ActionType
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 ActionType
impl Debug for ActionType
Source§impl<'_enum> From<&'_enum Action> for ActionType
impl<'_enum> From<&'_enum Action> for ActionType
Source§fn from(val: &'_enum Action) -> ActionType
fn from(val: &'_enum Action) -> ActionType
Converts to this type from the input type.
Source§impl From<Action> for ActionType
impl From<Action> for ActionType
Source§fn from(val: Action) -> ActionType
fn from(val: Action) -> ActionType
Converts to this type from the input type.
Source§impl PartialEq for ActionType
impl PartialEq for ActionType
impl Copy for ActionType
impl Eq for ActionType
impl StructuralPartialEq for ActionType
Auto Trait Implementations§
impl Freeze for ActionType
impl RefUnwindSafe for ActionType
impl Send for ActionType
impl Sync for ActionType
impl Unpin for ActionType
impl UnwindSafe for ActionType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.