pub struct ChatCompletionContentPartText {
pub text: String,
pub type_: String,
}Expand description
Learn about text inputs.
Fields§
§text: StringThe text content.
type_: StringThe type of the content part.
Trait Implementations§
Source§impl Clone for ChatCompletionContentPartText
impl Clone for ChatCompletionContentPartText
Source§fn clone(&self) -> ChatCompletionContentPartText
fn clone(&self) -> ChatCompletionContentPartText
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<'de> Deserialize<'de> for ChatCompletionContentPartText
impl<'de> Deserialize<'de> for ChatCompletionContentPartText
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 ChatCompletionContentPartText
impl RefUnwindSafe for ChatCompletionContentPartText
impl Send for ChatCompletionContentPartText
impl Sync for ChatCompletionContentPartText
impl Unpin for ChatCompletionContentPartText
impl UnsafeUnpin for ChatCompletionContentPartText
impl UnwindSafe for ChatCompletionContentPartText
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