pub enum ObjectEncryptionRequest {
SseS3,
SseKms {
key_id: String,
},
}Expand description
Object write encryption request.
Variants§
Trait Implementations§
Source§impl Clone for ObjectEncryptionRequest
impl Clone for ObjectEncryptionRequest
Source§fn clone(&self) -> ObjectEncryptionRequest
fn clone(&self) -> ObjectEncryptionRequest
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 ObjectEncryptionRequest
impl Debug for ObjectEncryptionRequest
Source§impl<'de> Deserialize<'de> for ObjectEncryptionRequest
impl<'de> Deserialize<'de> for ObjectEncryptionRequest
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
impl Eq for ObjectEncryptionRequest
Source§impl PartialEq for ObjectEncryptionRequest
impl PartialEq for ObjectEncryptionRequest
Source§fn eq(&self, other: &ObjectEncryptionRequest) -> bool
fn eq(&self, other: &ObjectEncryptionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ObjectEncryptionRequest
impl Serialize for ObjectEncryptionRequest
impl StructuralPartialEq for ObjectEncryptionRequest
Auto Trait Implementations§
impl Freeze for ObjectEncryptionRequest
impl RefUnwindSafe for ObjectEncryptionRequest
impl Send for ObjectEncryptionRequest
impl Sync for ObjectEncryptionRequest
impl Unpin for ObjectEncryptionRequest
impl UnsafeUnpin for ObjectEncryptionRequest
impl UnwindSafe for ObjectEncryptionRequest
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