pub struct SyncServerConfig {
pub session_token_ttl_secs: u64,
pub token_cache_capacity: u64,
pub token_cache_ttl_secs: u64,
pub command_expiry_secs: u64,
pub health_healthy_secs: i64,
pub health_warning_secs: i64,
pub client_id_prefix: String,
}Fields§
§session_token_ttl_secs: u64§token_cache_capacity: u64§token_cache_ttl_secs: u64§command_expiry_secs: u64§health_healthy_secs: i64§health_warning_secs: i64§client_id_prefix: StringTrait Implementations§
Source§impl Clone for SyncServerConfig
impl Clone for SyncServerConfig
Source§fn clone(&self) -> SyncServerConfig
fn clone(&self) -> SyncServerConfig
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 SyncServerConfig
impl Debug for SyncServerConfig
Auto Trait Implementations§
impl Freeze for SyncServerConfig
impl RefUnwindSafe for SyncServerConfig
impl Send for SyncServerConfig
impl Sync for SyncServerConfig
impl Unpin for SyncServerConfig
impl UnsafeUnpin for SyncServerConfig
impl UnwindSafe for SyncServerConfig
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