pub struct RpcServerConfig {
pub working_dir: PathBuf,
pub default_harness: Harness,
pub default_model: Option<String>,
pub project_root: Option<PathBuf>,
}Expand description
RPC Server configuration
Fields§
§working_dir: PathBufDefault working directory for agents
default_harness: HarnessDefault harness to use
default_model: Option<String>Default model to use
project_root: Option<PathBuf>Project root for task storage access
Trait Implementations§
Source§impl Clone for RpcServerConfig
impl Clone for RpcServerConfig
Source§fn clone(&self) -> RpcServerConfig
fn clone(&self) -> RpcServerConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 RpcServerConfig
impl Debug for RpcServerConfig
Auto Trait Implementations§
impl Freeze for RpcServerConfig
impl RefUnwindSafe for RpcServerConfig
impl Send for RpcServerConfig
impl Sync for RpcServerConfig
impl Unpin for RpcServerConfig
impl UnwindSafe for RpcServerConfig
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more