pub struct MultipartFileUploadQuery {
pub overwrite: bool,
pub parts: u32,
}Expand description
Query for multipart file uploads.
Fields§
§overwrite: boolSet to true to overwrite any files that already exist in CDF.
parts: u32Specify the number of upload URLs that should be returned, for uploading the file contents in parts. Between 1 and 250.
Implementations§
Trait Implementations§
Source§impl Clone for MultipartFileUploadQuery
impl Clone for MultipartFileUploadQuery
Source§fn clone(&self) -> MultipartFileUploadQuery
fn clone(&self) -> MultipartFileUploadQuery
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 MultipartFileUploadQuery
impl Debug for MultipartFileUploadQuery
Source§impl Default for MultipartFileUploadQuery
impl Default for MultipartFileUploadQuery
Source§fn default() -> MultipartFileUploadQuery
fn default() -> MultipartFileUploadQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MultipartFileUploadQuery
impl RefUnwindSafe for MultipartFileUploadQuery
impl Send for MultipartFileUploadQuery
impl Sync for MultipartFileUploadQuery
impl Unpin for MultipartFileUploadQuery
impl UnwindSafe for MultipartFileUploadQuery
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