pub struct SessionHistoryEvent {
pub events: Vec<EventMsg>,
}Expand description
A restored transcript kept distinct from live turn lifecycle events.
Fields§
§events: Vec<EventMsg>Trait Implementations§
Source§impl Clone for SessionHistoryEvent
impl Clone for SessionHistoryEvent
Source§fn clone(&self) -> SessionHistoryEvent
fn clone(&self) -> SessionHistoryEvent
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 SessionHistoryEvent
impl Debug for SessionHistoryEvent
Source§impl<'de> Deserialize<'de> for SessionHistoryEvent
impl<'de> Deserialize<'de> for SessionHistoryEvent
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 SessionHistoryEvent
impl PartialEq for SessionHistoryEvent
Source§impl Serialize for SessionHistoryEvent
impl Serialize for SessionHistoryEvent
impl StructuralPartialEq for SessionHistoryEvent
Auto Trait Implementations§
impl Freeze for SessionHistoryEvent
impl RefUnwindSafe for SessionHistoryEvent
impl Send for SessionHistoryEvent
impl Sync for SessionHistoryEvent
impl Unpin for SessionHistoryEvent
impl UnsafeUnpin for SessionHistoryEvent
impl UnwindSafe for SessionHistoryEvent
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