pub struct AgentBrowserConfig {
pub binary_path: String,
pub timeout_seconds: u64,
}Expand description
Configuration for the external agent-browser backend.
Fields§
§binary_path: StringPath to the agent-browser binary. Resolved at startup via which if not absolute.
timeout_seconds: u64Timeout for each CLI invocation in seconds.
Trait Implementations§
Source§impl Clone for AgentBrowserConfig
impl Clone for AgentBrowserConfig
Source§fn clone(&self) -> AgentBrowserConfig
fn clone(&self) -> AgentBrowserConfig
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 AgentBrowserConfig
impl Debug for AgentBrowserConfig
Auto Trait Implementations§
impl Freeze for AgentBrowserConfig
impl RefUnwindSafe for AgentBrowserConfig
impl Send for AgentBrowserConfig
impl Sync for AgentBrowserConfig
impl Unpin for AgentBrowserConfig
impl UnsafeUnpin for AgentBrowserConfig
impl UnwindSafe for AgentBrowserConfig
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