pub struct WorkspaceConfigSummary {
pub endpoint_count: usize,
pub model_count: usize,
pub chaos_characteristic_count: usize,
pub initial_data_counts: HashMap<String, usize>,
}Expand description
Workspace configuration summary
Fields§
§endpoint_count: usizeNumber of endpoints
model_count: usizeNumber of models
chaos_characteristic_count: usizeNumber of chaos characteristics
initial_data_counts: HashMap<String, usize>Initial data counts
Trait Implementations§
Source§impl Clone for WorkspaceConfigSummary
impl Clone for WorkspaceConfigSummary
Source§fn clone(&self) -> WorkspaceConfigSummary
fn clone(&self) -> WorkspaceConfigSummary
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 WorkspaceConfigSummary
impl Debug for WorkspaceConfigSummary
Source§impl<'de> Deserialize<'de> for WorkspaceConfigSummary
impl<'de> Deserialize<'de> for WorkspaceConfigSummary
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 WorkspaceConfigSummary
impl RefUnwindSafe for WorkspaceConfigSummary
impl Send for WorkspaceConfigSummary
impl Sync for WorkspaceConfigSummary
impl Unpin for WorkspaceConfigSummary
impl UnsafeUnpin for WorkspaceConfigSummary
impl UnwindSafe for WorkspaceConfigSummary
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