pub struct GetObjectAclInput {
pub bucket: String,
pub expected_bucket_owner: Option<String>,
pub key: String,
pub request_payer: Option<RequestPayer>,
pub version_id: Option<String>,
}Expand description
S3 GetObjectAclInput.
Fields§
§bucket: StringHTTP label (URI path).
expected_bucket_owner: Option<String>HTTP header: x-amz-expected-bucket-owner.
key: StringHTTP label (URI path).
request_payer: Option<RequestPayer>HTTP header: x-amz-request-payer.
version_id: Option<String>HTTP query: versionId.
Trait Implementations§
Source§impl Clone for GetObjectAclInput
impl Clone for GetObjectAclInput
Source§fn clone(&self) -> GetObjectAclInput
fn clone(&self) -> GetObjectAclInput
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 moreSource§impl Debug for GetObjectAclInput
impl Debug for GetObjectAclInput
Source§impl Default for GetObjectAclInput
impl Default for GetObjectAclInput
Source§fn default() -> GetObjectAclInput
fn default() -> GetObjectAclInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetObjectAclInput
impl RefUnwindSafe for GetObjectAclInput
impl Send for GetObjectAclInput
impl Sync for GetObjectAclInput
impl Unpin for GetObjectAclInput
impl UnsafeUnpin for GetObjectAclInput
impl UnwindSafe for GetObjectAclInput
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