pub struct TeamChatTurn {
pub addressed_to: Option<Vec<String>>,
pub content: String,
pub from_task: bool,
pub role: String,
pub run_meta: Map<String, Value>,
pub run_pending: bool,
pub team_run_id: String,
pub thread_id: Option<String>,
pub timestamp: String,
}Expand description
TeamChatTurn model.
Fields§
§addressed_to: Option<Vec<String>>§content: String§from_task: bool§role: String§run_meta: Map<String, Value>§run_pending: bool§team_run_id: String§thread_id: Option<String>§timestamp: StringTrait Implementations§
Source§impl Clone for TeamChatTurn
impl Clone for TeamChatTurn
Source§fn clone(&self) -> TeamChatTurn
fn clone(&self) -> TeamChatTurn
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 TeamChatTurn
impl Debug for TeamChatTurn
Source§impl Default for TeamChatTurn
impl Default for TeamChatTurn
Source§fn default() -> TeamChatTurn
fn default() -> TeamChatTurn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamChatTurn
impl<'de> Deserialize<'de> for TeamChatTurn
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 TeamChatTurn
impl PartialEq for TeamChatTurn
Source§impl Serialize for TeamChatTurn
impl Serialize for TeamChatTurn
impl StructuralPartialEq for TeamChatTurn
Auto Trait Implementations§
impl Freeze for TeamChatTurn
impl RefUnwindSafe for TeamChatTurn
impl Send for TeamChatTurn
impl Sync for TeamChatTurn
impl Unpin for TeamChatTurn
impl UnsafeUnpin for TeamChatTurn
impl UnwindSafe for TeamChatTurn
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