pub struct KeyringEntry {
pub key_id: String,
pub key_type: String,
pub user_id: String,
pub key_data: Vec<u8>,
}Expand description
A single entry from a MySQL keyring file.
Fields§
§key_id: StringKey identifier (e.g., INNODBKey-{uuid}-{id}).
key_type: StringKey type (e.g., AES).
user_id: StringUser ID associated with the key.
key_data: Vec<u8>De-obfuscated key data.
Trait Implementations§
Source§impl Clone for KeyringEntry
impl Clone for KeyringEntry
Source§fn clone(&self) -> KeyringEntry
fn clone(&self) -> KeyringEntry
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for KeyringEntry
impl RefUnwindSafe for KeyringEntry
impl Send for KeyringEntry
impl Sync for KeyringEntry
impl Unpin for KeyringEntry
impl UnwindSafe for KeyringEntry
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