pub struct HumanMessage {
pub content: MessageContent,
pub id: Option<String>,
pub name: Option<String>,
}Expand description
User input — can contain text, images, audio, files (multimodal)
Fields§
§content: MessageContent§id: Option<String>§name: Option<String>Trait Implementations§
Source§impl Clone for HumanMessage
impl Clone for HumanMessage
Source§fn clone(&self) -> HumanMessage
fn clone(&self) -> HumanMessage
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 HumanMessage
impl Debug for HumanMessage
Source§impl<'de> Deserialize<'de> for HumanMessage
impl<'de> Deserialize<'de> for HumanMessage
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 HumanMessage
impl RefUnwindSafe for HumanMessage
impl Send for HumanMessage
impl Sync for HumanMessage
impl Unpin for HumanMessage
impl UnsafeUnpin for HumanMessage
impl UnwindSafe for HumanMessage
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