pub struct GetObjectAttributesParts {
pub is_truncated: Option<bool>,
pub max_parts: Option<i32>,
pub next_part_number_marker: Option<String>,
pub part_number_marker: Option<String>,
pub parts: Vec<ObjectPart>,
pub total_parts_count: Option<i32>,
}Expand description
S3 GetObjectAttributesParts.
Fields§
§is_truncated: Option<bool>§max_parts: Option<i32>§next_part_number_marker: Option<String>§part_number_marker: Option<String>§parts: Vec<ObjectPart>§total_parts_count: Option<i32>Trait Implementations§
Source§impl Clone for GetObjectAttributesParts
impl Clone for GetObjectAttributesParts
Source§fn clone(&self) -> GetObjectAttributesParts
fn clone(&self) -> GetObjectAttributesParts
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 GetObjectAttributesParts
impl Debug for GetObjectAttributesParts
Source§impl Default for GetObjectAttributesParts
impl Default for GetObjectAttributesParts
Source§fn default() -> GetObjectAttributesParts
fn default() -> GetObjectAttributesParts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetObjectAttributesParts
impl RefUnwindSafe for GetObjectAttributesParts
impl Send for GetObjectAttributesParts
impl Sync for GetObjectAttributesParts
impl Unpin for GetObjectAttributesParts
impl UnsafeUnpin for GetObjectAttributesParts
impl UnwindSafe for GetObjectAttributesParts
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