pub struct LocalOrchestrator { /* private fields */ }Implementations§
Source§impl LocalOrchestrator
impl LocalOrchestrator
pub fn with_effects(effects: RuntimeEffectRegistry) -> Self
pub fn run(&self, request: RunRequest) -> Result<RunResult, OrchestratorError>
pub fn run_skill( &self, request: &SkillRunRequest, ) -> Result<RunResult, OrchestratorError>
pub fn run_skill_with_runner( &self, request: &SkillRunRequest, runner: &str, ) -> Result<RunResult, OrchestratorError>
pub fn run_graph( &self, request: &GraphRunRequest, ) -> Result<RunResult, OrchestratorError>
pub fn run_harness( &self, request: &HarnessRunRequest, ) -> Result<RunResult, OrchestratorError>
pub fn run_inline_harness( &self, request: &InlineHarnessRequest, ) -> Result<InlineHarnessReport, OrchestratorError>
pub fn run_harness_fixture( &self, request: &HarnessRunRequest, ) -> Result<HarnessReplayOutput, OrchestratorError>
Trait Implementations§
Source§impl Clone for LocalOrchestrator
impl Clone for LocalOrchestrator
Source§fn clone(&self) -> LocalOrchestrator
fn clone(&self) -> LocalOrchestrator
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 LocalOrchestrator
impl Debug for LocalOrchestrator
Source§impl Default for LocalOrchestrator
impl Default for LocalOrchestrator
Source§fn default() -> LocalOrchestrator
fn default() -> LocalOrchestrator
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for LocalOrchestrator
impl !UnwindSafe for LocalOrchestrator
impl Freeze for LocalOrchestrator
impl Send for LocalOrchestrator
impl Sync for LocalOrchestrator
impl Unpin for LocalOrchestrator
impl UnsafeUnpin for LocalOrchestrator
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