pub enum ServerSideEncryption {
Aes256,
AwsFsx,
AwsKms,
AwsKmsDsse,
}Expand description
S3 ServerSideEncryption enum.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ServerSideEncryption
impl Clone for ServerSideEncryption
Source§fn clone(&self) -> ServerSideEncryption
fn clone(&self) -> ServerSideEncryption
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 ServerSideEncryption
impl Debug for ServerSideEncryption
Source§impl Default for ServerSideEncryption
impl Default for ServerSideEncryption
Source§fn default() -> ServerSideEncryption
fn default() -> ServerSideEncryption
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerSideEncryption
impl<'de> Deserialize<'de> for ServerSideEncryption
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ServerSideEncryption
impl Display for ServerSideEncryption
Source§impl From<&str> for ServerSideEncryption
impl From<&str> for ServerSideEncryption
Source§impl Hash for ServerSideEncryption
impl Hash for ServerSideEncryption
Source§impl PartialEq for ServerSideEncryption
impl PartialEq for ServerSideEncryption
Source§fn eq(&self, other: &ServerSideEncryption) -> bool
fn eq(&self, other: &ServerSideEncryption) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServerSideEncryption
impl Serialize for ServerSideEncryption
impl Eq for ServerSideEncryption
impl StructuralPartialEq for ServerSideEncryption
Auto Trait Implementations§
impl Freeze for ServerSideEncryption
impl RefUnwindSafe for ServerSideEncryption
impl Send for ServerSideEncryption
impl Sync for ServerSideEncryption
impl Unpin for ServerSideEncryption
impl UnsafeUnpin for ServerSideEncryption
impl UnwindSafe for ServerSideEncryption
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