pub struct ExecutionGraph {
pub name: String,
pub owner: Option<String>,
pub charter_from: Option<String>,
pub steps: Vec<GraphStep>,
pub fanout_groups: BTreeMap<String, FanoutGroupPolicy>,
pub policy: Option<GraphPolicy>,
pub raw: RawGraphIr,
}Fields§
§name: String§owner: Option<String>§charter_from: Option<String>The input key carrying the parent charter authority term that steps with a
mint_authority directive attenuate from. Declared once at the graph (or
runner) level, replacing per-skill re-threading of the parent authority. A
step’s mint_authority is only coherent when this is set.
steps: Vec<GraphStep>§fanout_groups: BTreeMap<String, FanoutGroupPolicy>§policy: Option<GraphPolicy>§raw: RawGraphIrTrait Implementations§
Source§impl Clone for ExecutionGraph
impl Clone for ExecutionGraph
Source§fn clone(&self) -> ExecutionGraph
fn clone(&self) -> ExecutionGraph
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 ExecutionGraph
impl Debug for ExecutionGraph
Source§impl<'de> Deserialize<'de> for ExecutionGraph
impl<'de> Deserialize<'de> for ExecutionGraph
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 ExecutionGraph
impl PartialEq for ExecutionGraph
Source§fn eq(&self, other: &ExecutionGraph) -> bool
fn eq(&self, other: &ExecutionGraph) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExecutionGraph
impl Serialize for ExecutionGraph
impl StructuralPartialEq for ExecutionGraph
Auto Trait Implementations§
impl Freeze for ExecutionGraph
impl RefUnwindSafe for ExecutionGraph
impl Send for ExecutionGraph
impl Sync for ExecutionGraph
impl Unpin for ExecutionGraph
impl UnsafeUnpin for ExecutionGraph
impl UnwindSafe for ExecutionGraph
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