pub struct LlmClientConfig {
pub connect_timeout: Duration,
pub request_timeout: Duration,
pub pool_max_idle_per_host: usize,
pub pool_idle_timeout: Duration,
}Fields§
§connect_timeout: Duration§request_timeout: Duration§pool_max_idle_per_host: usize§pool_idle_timeout: DurationTrait Implementations§
Source§impl Clone for LlmClientConfig
impl Clone for LlmClientConfig
Source§fn clone(&self) -> LlmClientConfig
fn clone(&self) -> LlmClientConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LlmClientConfig
impl Debug for LlmClientConfig
Auto Trait Implementations§
impl Freeze for LlmClientConfig
impl RefUnwindSafe for LlmClientConfig
impl Send for LlmClientConfig
impl Sync for LlmClientConfig
impl Unpin for LlmClientConfig
impl UnsafeUnpin for LlmClientConfig
impl UnwindSafe for LlmClientConfig
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