pub enum ProcessingState {
PENDING,
RUNNING,
COMPLETED,
FAILED,
}Expand description
Enum for service processing states.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ProcessingState
impl Clone for ProcessingState
Source§fn clone(&self) -> ProcessingState
fn clone(&self) -> ProcessingState
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 ProcessingState
impl Debug for ProcessingState
Source§impl<'de> Deserialize<'de> for ProcessingState
impl<'de> Deserialize<'de> for ProcessingState
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
Source§impl Hash for ProcessingState
impl Hash for ProcessingState
Source§impl PartialEq for ProcessingState
impl PartialEq for ProcessingState
Source§impl Serialize for ProcessingState
impl Serialize for ProcessingState
impl Copy for ProcessingState
impl Eq for ProcessingState
impl StructuralPartialEq for ProcessingState
Auto Trait Implementations§
impl Freeze for ProcessingState
impl RefUnwindSafe for ProcessingState
impl Send for ProcessingState
impl Sync for ProcessingState
impl Unpin for ProcessingState
impl UnwindSafe for ProcessingState
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