pub struct ListAssistantFile {
pub object: String,
pub data: Vec<AssistantFileObject>,
pub headers: Option<HashMap<String, String>>,
}
Expand description
Represents a list of assistant files.
Fields§
§object: String
Object type, typically “list”.
data: Vec<AssistantFileObject>
List of assistant file objects.
headers: Option<HashMap<String, String>>
Optional headers associated with the list of assistant files.
Trait Implementations§
Source§impl Debug for ListAssistantFile
impl Debug for ListAssistantFile
Source§impl<'de> Deserialize<'de> for ListAssistantFile
impl<'de> Deserialize<'de> for ListAssistantFile
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 ListAssistantFile
impl RefUnwindSafe for ListAssistantFile
impl Send for ListAssistantFile
impl Sync for ListAssistantFile
impl Unpin for ListAssistantFile
impl UnwindSafe for ListAssistantFile
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