pub struct StreamingGlobalConfig {
pub default_timeout_ms: u64,
pub buffer_size: usize,
pub max_retries: usize,
pub retry_delay_ms: u64,
}Expand description
Streaming client configuration
Fields§
§default_timeout_ms: u64Default timeout for streaming connections
buffer_size: usizeBuffer size for streaming
max_retries: usizeMax retries for streaming connections
retry_delay_ms: u64Retry delay for streaming connections
Trait Implementations§
Source§impl Clone for StreamingGlobalConfig
impl Clone for StreamingGlobalConfig
Source§fn clone(&self) -> StreamingGlobalConfig
fn clone(&self) -> StreamingGlobalConfig
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 StreamingGlobalConfig
impl Debug for StreamingGlobalConfig
Source§impl Default for StreamingGlobalConfig
impl Default for StreamingGlobalConfig
Source§impl<'de> Deserialize<'de> for StreamingGlobalConfig
impl<'de> Deserialize<'de> for StreamingGlobalConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StreamingGlobalConfig
impl RefUnwindSafe for StreamingGlobalConfig
impl Send for StreamingGlobalConfig
impl Sync for StreamingGlobalConfig
impl Unpin for StreamingGlobalConfig
impl UnsafeUnpin for StreamingGlobalConfig
impl UnwindSafe for StreamingGlobalConfig
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