pub struct UploadedPart {
pub part_number: u32,
pub e_tag: Option<String>,
pub size: Option<u64>,
pub last_modified: Option<String>,
}Fields§
§part_number: u32§e_tag: Option<String>§size: Option<u64>§last_modified: Option<String>Trait Implementations§
Source§impl Clone for UploadedPart
impl Clone for UploadedPart
Source§fn clone(&self) -> UploadedPart
fn clone(&self) -> UploadedPart
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 moreAuto Trait Implementations§
impl Freeze for UploadedPart
impl RefUnwindSafe for UploadedPart
impl Send for UploadedPart
impl Sync for UploadedPart
impl Unpin for UploadedPart
impl UnsafeUnpin for UploadedPart
impl UnwindSafe for UploadedPart
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