pub struct ParadoxResolutionEvent {
pub paradox_id: Uuid,
pub event_type: ResolutionEventType,
pub timestamp: DateTime<Utc>,
pub details: Value,
}Expand description
An event in the paradox resolution history
Fields§
§paradox_id: Uuid§event_type: ResolutionEventType§timestamp: DateTime<Utc>§details: ValueTrait Implementations§
Source§impl Clone for ParadoxResolutionEvent
impl Clone for ParadoxResolutionEvent
Source§fn clone(&self) -> ParadoxResolutionEvent
fn clone(&self) -> ParadoxResolutionEvent
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 ParadoxResolutionEvent
impl Debug for ParadoxResolutionEvent
Source§impl<'de> Deserialize<'de> for ParadoxResolutionEvent
impl<'de> Deserialize<'de> for ParadoxResolutionEvent
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 ParadoxResolutionEvent
impl RefUnwindSafe for ParadoxResolutionEvent
impl Send for ParadoxResolutionEvent
impl Sync for ParadoxResolutionEvent
impl Unpin for ParadoxResolutionEvent
impl UnsafeUnpin for ParadoxResolutionEvent
impl UnwindSafe for ParadoxResolutionEvent
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