pub struct DevToolsConfig {
pub enable_crdt_inspection: bool,
pub enable_sync_monitoring: bool,
pub enable_transport_monitoring: bool,
pub max_events: usize,
pub enable_performance_metrics: bool,
}Expand description
DevTools configuration
Fields§
§enable_crdt_inspection: boolEnable CRDT inspection
enable_sync_monitoring: boolEnable sync monitoring
enable_transport_monitoring: boolEnable transport monitoring
max_events: usizeMaximum number of events to keep in memory
enable_performance_metrics: boolEnable performance metrics
Trait Implementations§
Source§impl Clone for DevToolsConfig
impl Clone for DevToolsConfig
Source§fn clone(&self) -> DevToolsConfig
fn clone(&self) -> DevToolsConfig
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 DevToolsConfig
impl Debug for DevToolsConfig
Source§impl Default for DevToolsConfig
impl Default for DevToolsConfig
Source§impl<'de> Deserialize<'de> for DevToolsConfig
impl<'de> Deserialize<'de> for DevToolsConfig
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 DevToolsConfig
impl RefUnwindSafe for DevToolsConfig
impl Send for DevToolsConfig
impl Sync for DevToolsConfig
impl Unpin for DevToolsConfig
impl UnwindSafe for DevToolsConfig
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