pub struct ChatCompletionRequestMessageContentPartFile {
pub file: ChatCompletionRequestMessageContentPartFileFile,
pub _type: String,
}
Fields§
§file: ChatCompletionRequestMessageContentPartFileFile
§_type: String
The type of the content part. Always file
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChatCompletionRequestMessageContentPartFile
impl<'de> Deserialize<'de> for ChatCompletionRequestMessageContentPartFile
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
Source§impl PartialEq for ChatCompletionRequestMessageContentPartFile
impl PartialEq for ChatCompletionRequestMessageContentPartFile
Source§fn eq(&self, other: &ChatCompletionRequestMessageContentPartFile) -> bool
fn eq(&self, other: &ChatCompletionRequestMessageContentPartFile) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ChatCompletionRequestMessageContentPartFile
Auto Trait Implementations§
impl Freeze for ChatCompletionRequestMessageContentPartFile
impl RefUnwindSafe for ChatCompletionRequestMessageContentPartFile
impl Send for ChatCompletionRequestMessageContentPartFile
impl Sync for ChatCompletionRequestMessageContentPartFile
impl Unpin for ChatCompletionRequestMessageContentPartFile
impl UnwindSafe for ChatCompletionRequestMessageContentPartFile
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