Struct google_cloud_storage::http::objects::Encryption
source · pub struct Encryption {
pub encryption_algorithm: String,
pub encryption_key: String,
pub encryption_key_sha256: String,
}Expand description
Parameters that can be passed to any object request.
Fields§
§encryption_algorithm: StringEncryption algorithm used with Customer-Supplied Encryption Keys feature.
encryption_key: StringEncryption key used with Customer-Supplied Encryption Keys feature.
encryption_key_sha256: StringSHA256 hash of encryption key used with Customer-Supplied Encryption Keys feature.
Trait Implementations§
source§impl Clone for Encryption
impl Clone for Encryption
source§fn clone(&self) -> Encryption
fn clone(&self) -> Encryption
Returns a copy 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 Encryption
impl Debug for Encryption
source§impl Default for Encryption
impl Default for Encryption
source§fn default() -> Encryption
fn default() -> Encryption
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for Encryption
impl<'de> Deserialize<'de> for Encryption
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 PartialEq<Encryption> for Encryption
impl PartialEq<Encryption> for Encryption
source§fn eq(&self, other: &Encryption) -> bool
fn eq(&self, other: &Encryption) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for Encryption
impl Serialize for Encryption
impl Eq for Encryption
impl StructuralEq for Encryption
impl StructuralPartialEq for Encryption
Auto Trait Implementations§
impl RefUnwindSafe for Encryption
impl Send for Encryption
impl Sync for Encryption
impl Unpin for Encryption
impl UnwindSafe for Encryption
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.