Enum casper_types::account::ActionType
source · #[repr(u32)]pub enum ActionType {
Deployment = 0,
KeyManagement = 1,
}Expand description
The various types of action which can be performed in the context of a given account.
Variants§
Deployment = 0
Represents performing a deploy.
KeyManagement = 1
Represents changing the associated keys (i.e. map of AccountHashs
to Weights) or action thresholds (i.e. the total
Weights of signing AccountHashs required to
perform various actions).
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