pub struct RemoteA2aAgentConfig {
pub timeout_secs: u64,
pub full_history_when_stateless: bool,
}Expand description
Configuration for the remote A2A agent.
Fields§
§timeout_secs: u64Connection timeout in seconds.
full_history_when_stateless: boolWhether to send full conversation history for stateless remote agents.
Trait Implementations§
Source§impl Clone for RemoteA2aAgentConfig
impl Clone for RemoteA2aAgentConfig
Source§fn clone(&self) -> RemoteA2aAgentConfig
fn clone(&self) -> RemoteA2aAgentConfig
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 RemoteA2aAgentConfig
impl Debug for RemoteA2aAgentConfig
Auto Trait Implementations§
impl Freeze for RemoteA2aAgentConfig
impl RefUnwindSafe for RemoteA2aAgentConfig
impl Send for RemoteA2aAgentConfig
impl Sync for RemoteA2aAgentConfig
impl Unpin for RemoteA2aAgentConfig
impl UnsafeUnpin for RemoteA2aAgentConfig
impl UnwindSafe for RemoteA2aAgentConfig
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