pub struct DirectMultipartUploadOptions {
pub part_size_bytes: Option<u64>,
}Expand description
Options for starting a direct multipart upload.
Fields§
§part_size_bytes: Option<u64>The byte length of every part except the last, or None for the server
default; providers allow at most 10,000 parts.
Trait Implementations§
Source§impl Clone for DirectMultipartUploadOptions
impl Clone for DirectMultipartUploadOptions
impl Copy for DirectMultipartUploadOptions
Source§impl Debug for DirectMultipartUploadOptions
impl Debug for DirectMultipartUploadOptions
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