pub struct EnvironmentStats {
pub total_environments: usize,
pub total_variables: usize,
pub active_environments: usize,
}
Expand description
Environment statistics
Fields§
§total_environments: usize
Total number of environments
total_variables: usize
Total number of variables across all environments
active_environments: usize
Number of active environments
Trait Implementations§
Source§impl Clone for EnvironmentStats
impl Clone for EnvironmentStats
Source§fn clone(&self) -> EnvironmentStats
fn clone(&self) -> EnvironmentStats
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 EnvironmentStats
impl Debug for EnvironmentStats
Source§impl<'de> Deserialize<'de> for EnvironmentStats
impl<'de> Deserialize<'de> for EnvironmentStats
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 EnvironmentStats
impl RefUnwindSafe for EnvironmentStats
impl Send for EnvironmentStats
impl Sync for EnvironmentStats
impl Unpin for EnvironmentStats
impl UnwindSafe for EnvironmentStats
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