pub enum LogEntryState {
Pending,
Executing,
Applied,
Reverted,
}Expand description
Durable state of one logged call.
Variants§
Pending
The action is waiting for approval.
Executing
The host may be executing the call.
Applied
The result was applied and may be replayed.
Reverted
The action was rejected, compensated, or reset.
Trait Implementations§
Source§impl Clone for LogEntryState
impl Clone for LogEntryState
impl Copy for LogEntryState
Source§impl Debug for LogEntryState
impl Debug for LogEntryState
Source§impl<'de> Deserialize<'de> for LogEntryState
impl<'de> Deserialize<'de> for LogEntryState
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
impl Eq for LogEntryState
Source§impl PartialEq for LogEntryState
impl PartialEq for LogEntryState
Source§impl Serialize for LogEntryState
impl Serialize for LogEntryState
impl StructuralPartialEq for LogEntryState
Auto Trait Implementations§
impl Freeze for LogEntryState
impl RefUnwindSafe for LogEntryState
impl Send for LogEntryState
impl Sync for LogEntryState
impl Unpin for LogEntryState
impl UnsafeUnpin for LogEntryState
impl UnwindSafe for LogEntryState
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