pub struct MultipartUploadState {
pub bucket: String,
pub key: String,
pub metadata: ObjectMetadata,
pub lock: ObjectLock,
pub initiated_epoch_seconds: u64,
pub parts: BTreeMap<u16, MultipartPartState>,
}Fields§
§bucket: String§key: String§metadata: ObjectMetadata§lock: ObjectLock§initiated_epoch_seconds: u64§parts: BTreeMap<u16, MultipartPartState>Trait Implementations§
Source§impl Clone for MultipartUploadState
impl Clone for MultipartUploadState
Source§fn clone(&self) -> MultipartUploadState
fn clone(&self) -> MultipartUploadState
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 MultipartUploadState
impl Debug for MultipartUploadState
Source§impl<'de> Deserialize<'de> for MultipartUploadState
impl<'de> Deserialize<'de> for MultipartUploadState
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 MultipartUploadState
impl RefUnwindSafe for MultipartUploadState
impl Send for MultipartUploadState
impl Sync for MultipartUploadState
impl Unpin for MultipartUploadState
impl UnsafeUnpin for MultipartUploadState
impl UnwindSafe for MultipartUploadState
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