pub struct UploadCompleteParams {
pub part_ids: Value,
pub md5: Option<String>,
}Fields§
§part_ids: ValueThe ordered list of Part IDs.
md5: Option<String>The optional md5 checksum for the file contents to verify if the bytes uploaded
Trait Implementations§
Source§impl Clone for UploadCompleteParams
impl Clone for UploadCompleteParams
Source§fn clone(&self) -> UploadCompleteParams
fn clone(&self) -> UploadCompleteParams
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 moreSource§impl Debug for UploadCompleteParams
impl Debug for UploadCompleteParams
Source§impl<'de> Deserialize<'de> for UploadCompleteParams
impl<'de> Deserialize<'de> for UploadCompleteParams
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 UploadCompleteParams
impl RefUnwindSafe for UploadCompleteParams
impl Send for UploadCompleteParams
impl Sync for UploadCompleteParams
impl Unpin for UploadCompleteParams
impl UnsafeUnpin for UploadCompleteParams
impl UnwindSafe for UploadCompleteParams
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