pub struct FlowConversation {
pub id: Uuid,
pub workspace_id: String,
pub flow_path: String,
pub title: Option<Option<String>>,
pub created_at: String,
pub updated_at: String,
pub created_by: String,
}
Fields§
§id: Uuid
Unique identifier for the conversation
workspace_id: String
The workspace ID where the conversation belongs
flow_path: String
Path of the flow this conversation is for
title: Option<Option<String>>
Optional title for the conversation
created_at: String
When the conversation was created
updated_at: String
When the conversation was last updated
created_by: String
Username who created the conversation
Implementations§
Trait Implementations§
Source§impl Clone for FlowConversation
impl Clone for FlowConversation
Source§fn clone(&self) -> FlowConversation
fn clone(&self) -> FlowConversation
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 FlowConversation
impl Debug for FlowConversation
Source§impl Default for FlowConversation
impl Default for FlowConversation
Source§fn default() -> FlowConversation
fn default() -> FlowConversation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowConversation
impl<'de> Deserialize<'de> for FlowConversation
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
Source§impl PartialEq for FlowConversation
impl PartialEq for FlowConversation
Source§impl Serialize for FlowConversation
impl Serialize for FlowConversation
impl StructuralPartialEq for FlowConversation
Auto Trait Implementations§
impl Freeze for FlowConversation
impl RefUnwindSafe for FlowConversation
impl Send for FlowConversation
impl Sync for FlowConversation
impl Unpin for FlowConversation
impl UnwindSafe for FlowConversation
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