pub struct Message {
pub id: String,
pub sender: Author,
pub content: String,
pub needs_human_input: bool,
pub created_at: String,
}Expand description
A specific message within a conversation thread.
Fields§
§id: StringUnique message ID.
sender: AuthorAgent who authored the message — now returned as sender by the API.
content: StringThe message text content — now returned as content by the API.
needs_human_input: boolTrue if the message is flagged for human intervention.
created_at: StringMessage timestamp.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
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 Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin for Message
impl UnwindSafe for Message
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