pub struct OrganismStatus {
pub imperial_version: String,
pub global_radiance_idx: f64,
pub active_pillars_count: u128,
pub current_imperial_cycle: CyclePhase,
pub total_metabolism_p_t: Picotoken,
pub avg_reflection_arc_ns: u128,
pub cumulative_uptime_ns: u128,
pub last_homeostasis_check_ns: u128,
}Expand description
The total health state of the Aicent Empire in the 2026 Cycle. REPAIRED: All fields upgraded to u128 for total Serde compatibility.
Fields§
§imperial_version: String§global_radiance_idx: f64§active_pillars_count: u128§current_imperial_cycle: CyclePhase§total_metabolism_p_t: Picotoken§avg_reflection_arc_ns: u128§cumulative_uptime_ns: u128§last_homeostasis_check_ns: u128Trait Implementations§
Source§impl Clone for OrganismStatus
impl Clone for OrganismStatus
Source§fn clone(&self) -> OrganismStatus
fn clone(&self) -> OrganismStatus
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 OrganismStatus
impl Debug for OrganismStatus
Source§impl<'de> Deserialize<'de> for OrganismStatus
impl<'de> Deserialize<'de> for OrganismStatus
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 OrganismStatus
impl RefUnwindSafe for OrganismStatus
impl Send for OrganismStatus
impl Sync for OrganismStatus
impl Unpin for OrganismStatus
impl UnsafeUnpin for OrganismStatus
impl UnwindSafe for OrganismStatus
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