pub struct CustomerEncrypton {
pub encryption_algorithm: String,
pub key_sha256: String,
}
Expand description
Contains data about how a user might encrypt their files in Google Cloud Storage.
Fields§
§encryption_algorithm: String
The encryption algorithm.
key_sha256: String
SHA256 hash value of the encryption key.
Trait Implementations§
Source§impl Debug for CustomerEncrypton
impl Debug for CustomerEncrypton
Source§impl<'de> Deserialize<'de> for CustomerEncrypton
impl<'de> Deserialize<'de> for CustomerEncrypton
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 for CustomerEncrypton
impl PartialEq for CustomerEncrypton
Source§impl Serialize for CustomerEncrypton
impl Serialize for CustomerEncrypton
impl StructuralPartialEq for CustomerEncrypton
Auto Trait Implementations§
impl Freeze for CustomerEncrypton
impl RefUnwindSafe for CustomerEncrypton
impl Send for CustomerEncrypton
impl Sync for CustomerEncrypton
impl Unpin for CustomerEncrypton
impl UnwindSafe for CustomerEncrypton
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