pub struct DebugContext {
pub reality: RealityContext,
pub contract: ContractContext,
pub scenario: ScenarioContext,
pub persona: PersonaContext,
pub chaos: ChaosContext,
pub collected_at: DateTime<Utc>,
}Expand description
Unified debug context combining all subsystem contexts
Fields§
§reality: RealityContextReality subsystem context
contract: ContractContextContract subsystem context
scenario: ScenarioContextScenario subsystem context
persona: PersonaContextPersona subsystem context
chaos: ChaosContextChaos subsystem context
collected_at: DateTime<Utc>Timestamp when context was collected
Implementations§
Source§impl DebugContext
impl DebugContext
Trait Implementations§
Source§impl Clone for DebugContext
impl Clone for DebugContext
Source§fn clone(&self) -> DebugContext
fn clone(&self) -> DebugContext
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 DebugContext
impl Debug for DebugContext
Source§impl Default for DebugContext
impl Default for DebugContext
Source§impl<'de> Deserialize<'de> for DebugContext
impl<'de> Deserialize<'de> for DebugContext
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 DebugContext
impl RefUnwindSafe for DebugContext
impl Send for DebugContext
impl Sync for DebugContext
impl Unpin for DebugContext
impl UnsafeUnpin for DebugContext
impl UnwindSafe for DebugContext
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