pub struct RunnerConfig {
pub app_name: String,
pub agent: Arc<dyn Agent>,
pub plugins: Option<Vec<Value>>,
pub artifact_service: Option<Value>,
pub session_service: Value,
pub memory_service: Option<Value>,
pub credential_service: Option<Value>,
}Expand description
The configuration parameters for the Runner.
Fields§
§app_name: StringThe application name.
agent: Arc<dyn Agent>The agent to run.
plugins: Option<Vec<Value>>§artifact_service: Option<Value>§session_service: Value§memory_service: Option<Value>§credential_service: Option<Value>Auto Trait Implementations§
impl Freeze for RunnerConfig
impl !RefUnwindSafe for RunnerConfig
impl Send for RunnerConfig
impl Sync for RunnerConfig
impl Unpin for RunnerConfig
impl !UnwindSafe for RunnerConfig
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