pub struct DirectMultipartUploadOptions {
pub part_size_bytes: Option<u64>,
}Expand description
Options for starting a direct multipart upload.
Fields§
§part_size_bytes: Option<u64>Byte length of every part except the last. None uses the server
default. Providers accept at most 10,000 parts.
Trait Implementations§
Source§impl Clone for DirectMultipartUploadOptions
impl Clone for DirectMultipartUploadOptions
Source§fn clone(&self) -> DirectMultipartUploadOptions
fn clone(&self) -> DirectMultipartUploadOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DirectMultipartUploadOptions
Source§impl Debug for DirectMultipartUploadOptions
impl Debug for DirectMultipartUploadOptions
Source§impl Default for DirectMultipartUploadOptions
impl Default for DirectMultipartUploadOptions
Source§fn default() -> DirectMultipartUploadOptions
fn default() -> DirectMultipartUploadOptions
Returns the “default value” for a type. Read more
impl Eq for DirectMultipartUploadOptions
impl StructuralPartialEq for DirectMultipartUploadOptions
Auto Trait Implementations§
impl Freeze for DirectMultipartUploadOptions
impl RefUnwindSafe for DirectMultipartUploadOptions
impl Send for DirectMultipartUploadOptions
impl Sync for DirectMultipartUploadOptions
impl Unpin for DirectMultipartUploadOptions
impl UnsafeUnpin for DirectMultipartUploadOptions
impl UnwindSafe for DirectMultipartUploadOptions
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