pub struct CompletedPart {
pub e_tag: Option<String>,
pub part_number: Option<i64>,
}Expand description
Details of the parts that were uploaded.
Fields§
§e_tag: Option<String>Entity tag returned when the part was uploaded.
part_number: Option<i64>Part number that identifies the part. This is a positive integer between 1 and 10,000.
Trait Implementations§
Source§impl Clone for CompletedPart
impl Clone for CompletedPart
Source§fn clone(&self) -> CompletedPart
fn clone(&self) -> CompletedPart
Returns a duplicate of the value. Read more
1.0.0 · 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 CompletedPart
impl Debug for CompletedPart
Source§impl Default for CompletedPart
impl Default for CompletedPart
Source§fn default() -> CompletedPart
fn default() -> CompletedPart
Returns the “default value” for a type. Read more
Source§impl PartialEq for CompletedPart
impl PartialEq for CompletedPart
impl StructuralPartialEq for CompletedPart
Auto Trait Implementations§
impl Freeze for CompletedPart
impl RefUnwindSafe for CompletedPart
impl Send for CompletedPart
impl Sync for CompletedPart
impl Unpin for CompletedPart
impl UnwindSafe for CompletedPart
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