pub enum OperationState {
Unknown,
Admitted,
Sealed,
}Expand description
State of an operation in the store.
Variants§
Unknown
Never seen this operation ID.
Admitted
Operation was admitted but never sealed (crash/disconnect before completion).
Sealed
Operation completed and response is available.
Auto Trait Implementations§
impl Freeze for OperationState
impl RefUnwindSafe for OperationState
impl Send for OperationState
impl Sync for OperationState
impl Unpin for OperationState
impl UnsafeUnpin for OperationState
impl UnwindSafe for OperationState
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