pub struct SkillGene {
pub triggers: BTreeSet<TriggerGene>,
pub steps: Vec<StepGene>,
pub requires: BTreeMap<String, String>,
pub mcp: BTreeSet<McpGene>,
}Fields§
§triggers: BTreeSet<TriggerGene>§steps: Vec<StepGene>§requires: BTreeMap<String, String>requirement name -> semver constraint string (as written in the manifest; parsed lazily by the Union semver merger).
mcp: BTreeSet<McpGene>Implementations§
Source§impl SkillGene
impl SkillGene
pub fn from_manifest(m: &SkillManifest) -> Result<Self, GeneError>
Sourcepub fn to_procedure(&self) -> Procedure
pub fn to_procedure(&self) -> Procedure
Rebuild a Procedure from the steps in this gene (preserves order,
no variables — Variables are copied from the keeper manifest by the
orchestrator, not the gene layer).
pub fn to_triggers(&self) -> Vec<Trigger>
pub fn to_requirements(&self) -> Vec<Requirement>
pub fn to_mcp_requirements(&self) -> Vec<McpRequirement>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SkillGene
impl<'de> Deserialize<'de> for SkillGene
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 SkillGene
impl StructuralPartialEq for SkillGene
Auto Trait Implementations§
impl Freeze for SkillGene
impl RefUnwindSafe for SkillGene
impl Send for SkillGene
impl Sync for SkillGene
impl Unpin for SkillGene
impl UnsafeUnpin for SkillGene
impl UnwindSafe for SkillGene
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,
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.