pub struct PutBucketEncryptionInput { /* private fields */ }Implementations§
Source§impl PutBucketEncryptionInput
impl PutBucketEncryptionInput
pub fn request_date(&self) -> Option<DateTime<Utc>>
pub fn request_host(&self) -> &str
pub fn request_header(&self) -> &Option<HashMap<String, String>>
pub fn request_query(&self) -> &Option<HashMap<String, String>>
pub fn set_request_date(&mut self, request_date: impl Into<DateTime<Utc>>)
pub fn set_request_host(&mut self, request_host: impl Into<String>)
pub fn set_request_header( &mut self, request_header: impl Into<HashMap<String, String>>, )
pub fn set_request_query( &mut self, request_query: impl Into<HashMap<String, String>>, )
Source§impl PutBucketEncryptionInput
impl PutBucketEncryptionInput
pub fn new( bucket: impl Into<String>, rule: impl Into<BucketEncryptionRule>, ) -> Self
pub fn bucket(&self) -> &str
pub fn rule(&self) -> &BucketEncryptionRule
pub fn set_bucket(&mut self, bucket: impl Into<String>)
pub fn set_rule(&mut self, rule: impl Into<BucketEncryptionRule>)
Trait Implementations§
Source§impl Clone for PutBucketEncryptionInput
impl Clone for PutBucketEncryptionInput
Source§fn clone(&self) -> PutBucketEncryptionInput
fn clone(&self) -> PutBucketEncryptionInput
Returns a duplicate of the value. Read more
1.0.0 · 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 PutBucketEncryptionInput
impl Debug for PutBucketEncryptionInput
Source§impl Default for PutBucketEncryptionInput
impl Default for PutBucketEncryptionInput
Source§fn default() -> PutBucketEncryptionInput
fn default() -> PutBucketEncryptionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutBucketEncryptionInput
impl PartialEq for PutBucketEncryptionInput
Source§impl Serialize for PutBucketEncryptionInput
impl Serialize for PutBucketEncryptionInput
impl StructuralPartialEq for PutBucketEncryptionInput
Auto Trait Implementations§
impl Freeze for PutBucketEncryptionInput
impl RefUnwindSafe for PutBucketEncryptionInput
impl Send for PutBucketEncryptionInput
impl Sync for PutBucketEncryptionInput
impl Unpin for PutBucketEncryptionInput
impl UnsafeUnpin for PutBucketEncryptionInput
impl UnwindSafe for PutBucketEncryptionInput
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