pub enum SessionEventRecord<PE = ()> {
Conversation(ConversationRecord),
Protocol(PE),
}Variants§
Conversation(ConversationRecord)
Protocol(PE)
Trait Implementations§
Source§impl<PE: Clone> Clone for SessionEventRecord<PE>
impl<PE: Clone> Clone for SessionEventRecord<PE>
Source§fn clone(&self) -> SessionEventRecord<PE>
fn clone(&self) -> SessionEventRecord<PE>
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<PE: Debug> Debug for SessionEventRecord<PE>
impl<PE: Debug> Debug for SessionEventRecord<PE>
Source§impl<'de, PE> Deserialize<'de> for SessionEventRecord<PE>where
PE: Deserialize<'de>,
impl<'de, PE> Deserialize<'de> for SessionEventRecord<PE>where
PE: Deserialize<'de>,
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<PE> Freeze for SessionEventRecord<PE>where
PE: Freeze,
impl<PE> RefUnwindSafe for SessionEventRecord<PE>where
PE: RefUnwindSafe,
impl<PE> Send for SessionEventRecord<PE>where
PE: Send,
impl<PE> Sync for SessionEventRecord<PE>where
PE: Sync,
impl<PE> Unpin for SessionEventRecord<PE>where
PE: Unpin,
impl<PE> UnsafeUnpin for SessionEventRecord<PE>where
PE: UnsafeUnpin,
impl<PE> UnwindSafe for SessionEventRecord<PE>where
PE: UnwindSafe,
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