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§
Sourcefn put_object_acl(
&self,
object_key: impl Into<String>,
acl: ObjectAcl,
params: Option<PutObjectAclParams>,
) -> impl Future<Output = Result<()>>
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".