pub struct CreateBucketOption {
pub grant_full_control: Option<String>,
pub grant_read: Option<String>,
pub grant_read_acp: Option<String>,
pub grant_write: Option<String>,
pub grant_write_acp: Option<String>,
pub object_lock_enabled_for_bucket: Option<bool>,
pub object_ownership: Option<ObjectOwnership>,
}Fields§
§grant_full_control: Option<String>§grant_read: Option<String>§grant_read_acp: Option<String>§grant_write: Option<String>§grant_write_acp: Option<String>§object_lock_enabled_for_bucket: Option<bool>§object_ownership: Option<ObjectOwnership>Auto Trait Implementations§
impl Freeze for CreateBucketOption
impl RefUnwindSafe for CreateBucketOption
impl Send for CreateBucketOption
impl Sync for CreateBucketOption
impl Unpin for CreateBucketOption
impl UnsafeUnpin for CreateBucketOption
impl UnwindSafe for CreateBucketOption
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