pub struct TranscriptEvent<'a> {
pub session_id: &'a SessionId,
pub item: &'a Item,
}Expand description
Session-addressed transcript append event delivered to
TranscriptObservers.
Fields§
§session_id: &'a SessionIdSession this transcript append belongs to.
item: &'a ItemFull item that was appended.
Trait Implementations§
Source§impl<'a> Clone for TranscriptEvent<'a>
impl<'a> Clone for TranscriptEvent<'a>
Source§fn clone(&self) -> TranscriptEvent<'a>
fn clone(&self) -> TranscriptEvent<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for TranscriptEvent<'a>
impl<'a> RefUnwindSafe for TranscriptEvent<'a>
impl<'a> Send for TranscriptEvent<'a>
impl<'a> Sync for TranscriptEvent<'a>
impl<'a> Unpin for TranscriptEvent<'a>
impl<'a> UnsafeUnpin for TranscriptEvent<'a>
impl<'a> UnwindSafe for TranscriptEvent<'a>
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