pub enum ReplayWarning {
ChoiceLabelDrift {
at_event: usize,
index: u32,
recorded: String,
found: String,
},
}Expand description
A non-fatal replay observation.
Variants§
ChoiceLabelDrift
A choice replayed by index, but its recorded label differs from the label now presented at that index (a soft signal the story text drifted under the same choice ordering).
Trait Implementations§
Source§impl Clone for ReplayWarning
impl Clone for ReplayWarning
Source§fn clone(&self) -> ReplayWarning
fn clone(&self) -> ReplayWarning
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 ReplayWarning
impl Debug for ReplayWarning
Source§impl<'de> Deserialize<'de> for ReplayWarning
impl<'de> Deserialize<'de> for ReplayWarning
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
Source§impl PartialEq for ReplayWarning
impl PartialEq for ReplayWarning
Source§impl Serialize for ReplayWarning
impl Serialize for ReplayWarning
impl StructuralPartialEq for ReplayWarning
Auto Trait Implementations§
impl Freeze for ReplayWarning
impl RefUnwindSafe for ReplayWarning
impl Send for ReplayWarning
impl Sync for ReplayWarning
impl Unpin for ReplayWarning
impl UnsafeUnpin for ReplayWarning
impl UnwindSafe for ReplayWarning
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