pub enum ActionType {
Call,
Create,
CallResult,
CreateResult,
InternalTransferAction,
}
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
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
source§fn eq(&self, other: &ActionType) -> bool
fn eq(&self, other: &ActionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ActionType
impl Eq for ActionType
impl StructuralPartialEq for ActionType
Auto Trait Implementations§
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