pub struct ParameterCryptoInfo {
pub cek_ordinal: u16,
pub encryption_type: EncryptionTypeWire,
pub algorithm_id: u8,
pub column_ordinal: u16,
pub database_id: u32,
}Expand description
Encryption metadata for a single parameter.
Fields§
§cek_ordinal: u16Index into the CEK table.
encryption_type: EncryptionTypeWireEncryption type (deterministic or randomized).
algorithm_id: u8Algorithm ID.
column_ordinal: u16Target column ordinal in the table (for type information).
database_id: u32Target column database ID.
Implementations§
Trait Implementations§
Source§impl Clone for ParameterCryptoInfo
impl Clone for ParameterCryptoInfo
Source§fn clone(&self) -> ParameterCryptoInfo
fn clone(&self) -> ParameterCryptoInfo
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 ParameterCryptoInfo
impl RefUnwindSafe for ParameterCryptoInfo
impl Send for ParameterCryptoInfo
impl Sync for ParameterCryptoInfo
impl Unpin for ParameterCryptoInfo
impl UnwindSafe for ParameterCryptoInfo
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