pub struct ConversationEntry {
pub entry_type: ConversationType,
pub id: String,
pub text: String,
pub ts: String,
}Expand description
A single entry in the planning conversation.
Fields§
§entry_type: ConversationTypeEntry type: either a prompt from the agent or response from user
id: StringUnique identifier for this message
text: StringThe message text
ts: StringISO 8601 timestamp of the message
Trait 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