pub struct ConversationDump {
pub conversation_id: String,
pub raw: String,
}Expand description
A raw, engine-specific conversation export (pre-normalization).
Fields§
§conversation_id: StringThe engine conversation id this dump came from.
raw: StringThe raw payload (usually JSON text from the engine).
Trait Implementations§
Source§impl Clone for ConversationDump
impl Clone for ConversationDump
Source§fn clone(&self) -> ConversationDump
fn clone(&self) -> ConversationDump
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 ConversationDump
impl Debug for ConversationDump
Source§impl<'de> Deserialize<'de> for ConversationDump
impl<'de> Deserialize<'de> for ConversationDump
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
impl Eq for ConversationDump
Source§impl PartialEq for ConversationDump
impl PartialEq for ConversationDump
Source§impl Serialize for ConversationDump
impl Serialize for ConversationDump
impl StructuralPartialEq for ConversationDump
Auto Trait Implementations§
impl Freeze for ConversationDump
impl RefUnwindSafe for ConversationDump
impl Send for ConversationDump
impl Sync for ConversationDump
impl Unpin for ConversationDump
impl UnsafeUnpin for ConversationDump
impl UnwindSafe for ConversationDump
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