pub struct ObjectParts {
pub is_truncated: bool,
pub max_parts: i32,
pub next_part_number_marker: i32,
pub part_number_marker: i32,
pub part: Vec<AttributesPart>,
pub parts_count: u64,
}
Fields§
§is_truncated: bool
§max_parts: i32
§next_part_number_marker: i32
§part_number_marker: i32
§part: Vec<AttributesPart>
§parts_count: u64
Trait Implementations§
Source§impl Debug for ObjectParts
impl Debug for ObjectParts
Source§impl<'de> Deserialize<'de> for ObjectParts
impl<'de> Deserialize<'de> for ObjectParts
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 ObjectParts
impl RefUnwindSafe for ObjectParts
impl Send for ObjectParts
impl Sync for ObjectParts
impl Unpin for ObjectParts
impl UnwindSafe for ObjectParts
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