Skip to main content

EvolveBridge

Trait EvolveBridge 

Source
pub trait EvolveBridge: Send + Sync {
    // Provided methods
    fn track_evolution(
        &self,
        _blueprint_id: &str,
        _change: &str,
    ) -> Result<(), String> { ... }
    fn get_evolution_history(
        &self,
        _blueprint_id: &str,
    ) -> Result<Vec<String>, String> { ... }
    fn suggest_improvements(
        &self,
        _blueprint_json: &str,
    ) -> Result<Vec<String>, String> { ... }
}

Provided Methods§

Source

fn track_evolution( &self, _blueprint_id: &str, _change: &str, ) -> Result<(), String>

Source

fn get_evolution_history( &self, _blueprint_id: &str, ) -> Result<Vec<String>, String>

Source

fn suggest_improvements( &self, _blueprint_json: &str, ) -> Result<Vec<String>, String>

Implementors§