pub struct MultipartFileUploadResponse {
pub file_ids: Vec<u64>,
pub metadata: Vec<File>,
}
Expand description
Response returned by the uploadfile
endpoint when uploading multiple files.
Contains the list of uploaded file IDs and their corresponding metadata.
Fields§
§file_ids: Vec<u64>
The IDs of the uploaded files.
metadata: Vec<File>
Metadata for each uploaded file.
Trait Implementations§
Source§impl Debug for MultipartFileUploadResponse
impl Debug for MultipartFileUploadResponse
Source§impl<'de> Deserialize<'de> for MultipartFileUploadResponse
impl<'de> Deserialize<'de> for MultipartFileUploadResponse
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 MultipartFileUploadResponse
impl RefUnwindSafe for MultipartFileUploadResponse
impl Send for MultipartFileUploadResponse
impl Sync for MultipartFileUploadResponse
impl Unpin for MultipartFileUploadResponse
impl UnwindSafe for MultipartFileUploadResponse
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