pub struct ExecutionNode {
pub id: String,
pub component: String,
pub kind: NodeKind,
pub dependencies: Vec<String>,
pub resources: Vec<ResourceClaim>,
}Expand description
One executable node in the plan DAG.
Fields§
§id: StringStable node identity referenced by dependency edges.
component: StringResolved component associated with this node.
kind: NodeKindLifecycle operation represented by the node.
dependencies: Vec<String>Node IDs that must complete successfully before this node can run.
resources: Vec<ResourceClaim>Capacities and named locks acquired before running the node.
Trait Implementations§
Source§impl Clone for ExecutionNode
impl Clone for ExecutionNode
Source§fn clone(&self) -> ExecutionNode
fn clone(&self) -> ExecutionNode
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 ExecutionNode
impl Debug for ExecutionNode
Source§impl<'de> Deserialize<'de> for ExecutionNode
impl<'de> Deserialize<'de> for ExecutionNode
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 ExecutionNode
Source§impl PartialEq for ExecutionNode
impl PartialEq for ExecutionNode
Source§impl Serialize for ExecutionNode
impl Serialize for ExecutionNode
impl StructuralPartialEq for ExecutionNode
Auto Trait Implementations§
impl Freeze for ExecutionNode
impl RefUnwindSafe for ExecutionNode
impl Send for ExecutionNode
impl Sync for ExecutionNode
impl Unpin for ExecutionNode
impl UnsafeUnpin for ExecutionNode
impl UnwindSafe for ExecutionNode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.