pub struct ContextSummary {
pub incarnation_id: Option<IncarnationId>,
pub substrate_tier: Option<String>,
pub environment_type: Option<String>,
pub environment_mood: Option<String>,
pub resource_bottleneck: Option<String>,
pub stakes_level: Option<String>,
pub coherence_level: Option<String>,
pub uptime_secs: Option<u64>,
}Expand description
Context summary — quick overview of reality state.
Fields§
§incarnation_id: Option<IncarnationId>§substrate_tier: Option<String>§environment_type: Option<String>§environment_mood: Option<String>§resource_bottleneck: Option<String>§stakes_level: Option<String>§coherence_level: Option<String>§uptime_secs: Option<u64>Trait Implementations§
Source§impl Clone for ContextSummary
impl Clone for ContextSummary
Source§fn clone(&self) -> ContextSummary
fn clone(&self) -> ContextSummary
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 ContextSummary
impl Debug for ContextSummary
Source§impl<'de> Deserialize<'de> for ContextSummary
impl<'de> Deserialize<'de> for ContextSummary
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 ContextSummary
impl RefUnwindSafe for ContextSummary
impl Send for ContextSummary
impl Sync for ContextSummary
impl Unpin for ContextSummary
impl UnsafeUnpin for ContextSummary
impl UnwindSafe for ContextSummary
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