pub enum ActionStatus {
Completed,
Unprocessed,
Sending,
Unproven,
Unsigned,
NoSend,
NonFinal,
Failed,
}Expand description
Current state of a transaction action.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ActionStatus
impl Clone for ActionStatus
Source§fn clone(&self) -> ActionStatus
fn clone(&self) -> ActionStatus
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 ActionStatus
impl Debug for ActionStatus
Source§impl PartialEq for ActionStatus
impl PartialEq for ActionStatus
impl Eq for ActionStatus
impl StructuralPartialEq for ActionStatus
Auto Trait Implementations§
impl Freeze for ActionStatus
impl RefUnwindSafe for ActionStatus
impl Send for ActionStatus
impl Sync for ActionStatus
impl Unpin for ActionStatus
impl UnsafeUnpin for ActionStatus
impl UnwindSafe for ActionStatus
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