Skip to main content

PutObjectAclOperations

Trait PutObjectAclOperations 

Source
pub trait PutObjectAclOperations {
    // Required method
    fn put_object_acl(
        &self,
        object_key: impl Into<String>,
        acl: ObjectAcl,
        params: Option<PutObjectAclParams>,
    ) -> impl Future<Output = Result<()>>;
}
Expand description

Trait for PutObjectACL operations.

Required Methods§

Source

fn put_object_acl( &self, object_key: impl Into<String>, acl: ObjectAcl, params: Option<PutObjectAclParams>, ) -> impl Future<Output = Result<()>>

Set the ACL of an object.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§