pub struct ClientSdkConfig {
pub enable_typescript: bool,
pub enable_reconnection: bool,
pub enable_caching: bool,
pub reconnection_delay_ms: u64,
pub max_reconnection_attempts: u32,
}Expand description
Client SDK configuration
Fields§
§enable_typescript: boolEnable TypeScript definitions
enable_reconnection: boolEnable reconnection logic
enable_caching: boolEnable client-side caching
reconnection_delay_ms: u64Reconnection delay in milliseconds
max_reconnection_attempts: u32Maximum reconnection attempts
Trait Implementations§
Source§impl Clone for ClientSdkConfig
impl Clone for ClientSdkConfig
Source§fn clone(&self) -> ClientSdkConfig
fn clone(&self) -> ClientSdkConfig
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 ClientSdkConfig
impl Debug for ClientSdkConfig
Auto Trait Implementations§
impl Freeze for ClientSdkConfig
impl RefUnwindSafe for ClientSdkConfig
impl Send for ClientSdkConfig
impl Sync for ClientSdkConfig
impl Unpin for ClientSdkConfig
impl UnsafeUnpin for ClientSdkConfig
impl UnwindSafe for ClientSdkConfig
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