pub struct GraphPlan {
pub graph_id: String,
pub graph_digest: String,
pub order: Vec<String>,
pub entrypoints: Vec<String>,
pub effective_edges: Vec<EffectiveEdge>,
pub reachable: Vec<String>,
pub unreachable: Vec<String>,
pub tier_histogram: BTreeMap<String, usize>,
pub worst_case_node_executions: u64,
pub executable: bool,
pub unsupported_features: Vec<String>,
}Expand description
Deterministic, non-executing conformance-level-0 graph plan.
Fields§
§graph_id: StringGraph identifier from the source document.
graph_digest: StringRFC 8785/SHA-256 identity of the graph.
order: Vec<String>Deterministic topological node order.
entrypoints: Vec<String>Declared graph entrypoints.
effective_edges: Vec<EffectiveEdge>Normalized dependency and explicit edges.
reachable: Vec<String>Nodes reachable from an entrypoint.
unreachable: Vec<String>Nodes not reachable from any entrypoint.
tier_histogram: BTreeMap<String, usize>Count of nodes by intelligence tier.
worst_case_node_executions: u64Conservative upper bound on node executions.
executable: boolAlways false because Level 0 plans never execute graphs.
unsupported_features: Vec<String>Features that require a higher conformance execution tier.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphPlan
impl<'de> Deserialize<'de> for GraphPlan
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 StructuralPartialEq for GraphPlan
Auto Trait Implementations§
impl Freeze for GraphPlan
impl RefUnwindSafe for GraphPlan
impl Send for GraphPlan
impl Sync for GraphPlan
impl Unpin for GraphPlan
impl UnsafeUnpin for GraphPlan
impl UnwindSafe for GraphPlan
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