pub struct EcosystemStatus {
pub health: EcosystemHealth,
pub active_modules: usize,
pub total_operations: u64,
pub avg_response_time: f64,
pub resource_utilization: ResourceUtilization,
pub last_update: Option<Instant>,
}Expand description
Status of the advanced ecosystem
Fields§
§health: EcosystemHealthOverall health status
active_modules: usizeNumber of active modules
total_operations: u64Total operations processed
avg_response_time: f64Average response time (ms)
resource_utilization: ResourceUtilizationResource utilization
last_update: Option<Instant>Last update timestamp
Trait Implementations§
Source§impl Clone for EcosystemStatus
impl Clone for EcosystemStatus
Source§fn clone(&self) -> EcosystemStatus
fn clone(&self) -> EcosystemStatus
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 EcosystemStatus
impl Debug for EcosystemStatus
Source§impl<'de> Deserialize<'de> for EcosystemStatus
impl<'de> Deserialize<'de> for EcosystemStatus
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 EcosystemStatus
impl RefUnwindSafe for EcosystemStatus
impl Send for EcosystemStatus
impl Sync for EcosystemStatus
impl Unpin for EcosystemStatus
impl UnwindSafe for EcosystemStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more