pub struct ConversationEntry {
pub role: String,
pub content: String,
pub timestamp: u64,
}Fields§
§role: String§content: String§timestamp: u64Trait Implementations§
Source§impl Clone for ConversationEntry
impl Clone for ConversationEntry
Source§fn clone(&self) -> ConversationEntry
fn clone(&self) -> ConversationEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 ConversationEntry
impl Debug for ConversationEntry
Source§impl<'de> Deserialize<'de> for ConversationEntry
impl<'de> Deserialize<'de> for ConversationEntry
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 Freeze for ConversationEntry
impl RefUnwindSafe for ConversationEntry
impl Send for ConversationEntry
impl Sync for ConversationEntry
impl Unpin for ConversationEntry
impl UnsafeUnpin for ConversationEntry
impl UnwindSafe for ConversationEntry
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