pub struct GetObjectAttributesResult {
pub etag: Option<String>,
pub checksum: Option<Checksum>,
pub object_parts: Option<GetObjectAttributesParts>,
pub storage_class: Option<String>,
pub object_size: Option<u64>,
}Expand description
Result of a get_object_attributes request
Fields§
§etag: Option<String>ETag of the object
checksum: Option<Checksum>Checksum of the object
object_parts: Option<GetObjectAttributesParts>Object parts metadata for multi part object
storage_class: Option<String>Storage class of the object
object_size: Option<u64>Object size
Trait Implementations§
Source§impl Debug for GetObjectAttributesResult
impl Debug for GetObjectAttributesResult
Source§impl Default for GetObjectAttributesResult
impl Default for GetObjectAttributesResult
Source§fn default() -> GetObjectAttributesResult
fn default() -> GetObjectAttributesResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetObjectAttributesResult
impl RefUnwindSafe for GetObjectAttributesResult
impl Send for GetObjectAttributesResult
impl Sync for GetObjectAttributesResult
impl Unpin for GetObjectAttributesResult
impl UnwindSafe for GetObjectAttributesResult
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