pub struct HumanMessage {
pub content: String,
pub parts: Vec<ContentPart>,
}Expand description
A human/user message.
Fields§
§content: StringThe message text.
parts: Vec<ContentPart>Multimodal parts (images, audio). Empty for plain text. Providers that don’t support multimodal silently ignore this field.
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 Default for HumanMessage
impl Default for HumanMessage
Source§fn default() -> HumanMessage
fn default() -> HumanMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HumanMessage
impl<'de> Deserialize<'de> for HumanMessage
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<HumanMessage, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<HumanMessage, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HumanMessage
impl PartialEq for HumanMessage
Source§fn eq(&self, other: &HumanMessage) -> bool
fn eq(&self, other: &HumanMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HumanMessage
impl Serialize for HumanMessage
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for HumanMessage
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