pub struct LlmTimeouts {
pub request_timeout: Option<Duration>,
pub chunk_timeout: Duration,
}Fields§
§request_timeout: Option<Duration>§chunk_timeout: DurationTrait Implementations§
Source§impl Clone for LlmTimeouts
impl Clone for LlmTimeouts
Source§fn clone(&self) -> LlmTimeouts
fn clone(&self) -> LlmTimeouts
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 moreimpl Copy for LlmTimeouts
Source§impl Debug for LlmTimeouts
impl Debug for LlmTimeouts
Source§impl Default for LlmTimeouts
impl Default for LlmTimeouts
impl Eq for LlmTimeouts
Source§impl PartialEq for LlmTimeouts
impl PartialEq for LlmTimeouts
Source§fn eq(&self, other: &LlmTimeouts) -> bool
fn eq(&self, other: &LlmTimeouts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LlmTimeouts
Auto Trait Implementations§
impl Freeze for LlmTimeouts
impl RefUnwindSafe for LlmTimeouts
impl Send for LlmTimeouts
impl Sync for LlmTimeouts
impl Unpin for LlmTimeouts
impl UnsafeUnpin for LlmTimeouts
impl UnwindSafe for LlmTimeouts
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