pub enum DataFlowState {
Initiating,
Preparing,
Prepared,
Starting,
Started,
Suspended,
Completed,
Terminated,
}Variants§
Trait Implementations§
Source§impl Clone for DataFlowState
impl Clone for DataFlowState
Source§fn clone(&self) -> DataFlowState
fn clone(&self) -> DataFlowState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataFlowState
impl Debug for DataFlowState
Source§impl<'de> Deserialize<'de> for DataFlowState
impl<'de> Deserialize<'de> for DataFlowState
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 PartialEq for DataFlowState
impl PartialEq for DataFlowState
Source§impl Serialize for DataFlowState
impl Serialize for DataFlowState
impl StructuralPartialEq for DataFlowState
Auto Trait Implementations§
impl Freeze for DataFlowState
impl RefUnwindSafe for DataFlowState
impl Send for DataFlowState
impl Sync for DataFlowState
impl Unpin for DataFlowState
impl UnsafeUnpin for DataFlowState
impl UnwindSafe for DataFlowState
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