pub struct Message {
pub completion_tokens: Option<Option<i32>>,
pub content: String,
pub created_at: String,
pub dataset_id: Uuid,
pub deleted: bool,
pub id: Uuid,
pub prompt_tokens: Option<Option<i32>>,
pub role: String,
pub sort_order: i32,
pub topic_id: Uuid,
pub updated_at: String,
}
Fields§
§completion_tokens: Option<Option<i32>>
§content: String
§created_at: String
§dataset_id: Uuid
§deleted: bool
§id: Uuid
§prompt_tokens: Option<Option<i32>>
§role: String
§sort_order: i32
§topic_id: Uuid
§updated_at: String
Implementations§
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
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin 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