pub struct SetDatabaseEncryptionKey {
pub new_encryption_key: String,
}
Expand description
Changes the database encryption key. Usually the encryption key is never changed and is stored in some OS keychain
Fields§
§new_encryption_key: String
New encryption key
Trait Implementations§
Source§impl Clone for SetDatabaseEncryptionKey
impl Clone for SetDatabaseEncryptionKey
Source§fn clone(&self) -> SetDatabaseEncryptionKey
fn clone(&self) -> SetDatabaseEncryptionKey
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 SetDatabaseEncryptionKey
impl Debug for SetDatabaseEncryptionKey
Source§impl<'de> Deserialize<'de> for SetDatabaseEncryptionKey
impl<'de> Deserialize<'de> for SetDatabaseEncryptionKey
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 Method for SetDatabaseEncryptionKey
impl Method for SetDatabaseEncryptionKey
Auto Trait Implementations§
impl Freeze for SetDatabaseEncryptionKey
impl RefUnwindSafe for SetDatabaseEncryptionKey
impl Send for SetDatabaseEncryptionKey
impl Sync for SetDatabaseEncryptionKey
impl Unpin for SetDatabaseEncryptionKey
impl UnwindSafe for SetDatabaseEncryptionKey
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