pub struct ListAssistantFilesResponse {
pub object: String,
pub data: Vec<AssistantFile>,
pub first_id: Option<String>,
pub last_id: Option<String>,
pub has_more: bool,
}Expand description
Response containing a list of assistant files.
Fields§
§object: String§data: Vec<AssistantFile>§first_id: Option<String>§last_id: Option<String>§has_more: boolTrait Implementations§
Source§impl Clone for ListAssistantFilesResponse
impl Clone for ListAssistantFilesResponse
Source§fn clone(&self) -> ListAssistantFilesResponse
fn clone(&self) -> ListAssistantFilesResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ListAssistantFilesResponse
impl Debug for ListAssistantFilesResponse
Source§impl<'de> Deserialize<'de> for ListAssistantFilesResponse
impl<'de> Deserialize<'de> for ListAssistantFilesResponse
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 ListAssistantFilesResponse
impl RefUnwindSafe for ListAssistantFilesResponse
impl Send for ListAssistantFilesResponse
impl Sync for ListAssistantFilesResponse
impl Unpin for ListAssistantFilesResponse
impl UnwindSafe for ListAssistantFilesResponse
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