pub enum DagState {
Unknown,
SingleNode,
FanIn,
FanOut,
}Expand description
State of the node in DAG execution
Variants§
Unknown
Unknown state
SingleNode
State for a single node
FanIn
Fan-in state to gather inputs
FanOut
Fan-out state to distribute inputs
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DagState
impl<'de> Deserialize<'de> for DagState
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
Auto Trait Implementations§
impl Freeze for DagState
impl RefUnwindSafe for DagState
impl Send for DagState
impl Sync for DagState
impl Unpin for DagState
impl UnsafeUnpin for DagState
impl UnwindSafe for DagState
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