pub trait RuntimeHarnessStore:
HarnessStore
+ Send
+ Sync {
// Required method
fn add_harness<'life0, 'async_trait>(
&'life0 self,
harness: Harness,
) -> Pin<Box<dyn Future<Output = Result<(), AgentLoopError>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}Expand description
Harness store contract for runtime seeding and lookup.
Required Methods§
Sourcefn add_harness<'life0, 'async_trait>(
&'life0 self,
harness: Harness,
) -> Pin<Box<dyn Future<Output = Result<(), AgentLoopError>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
fn add_harness<'life0, 'async_trait>(
&'life0 self,
harness: Harness,
) -> Pin<Box<dyn Future<Output = Result<(), AgentLoopError>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Insert or replace a harness definition.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".