pub struct EncryptedColumn {
pub index: usize,
pub declared_type: String,
}Expand description
§5.11: one encrypted column — its positional index and its app-side
declared type name (string, integer, …). The wire Column.ty is
bytes; this carries the pre-flip type for the encrypt/decrypt seam.
Fields§
§index: usize§declared_type: StringTrait Implementations§
Source§impl Clone for EncryptedColumn
impl Clone for EncryptedColumn
Source§fn clone(&self) -> EncryptedColumn
fn clone(&self) -> EncryptedColumn
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EncryptedColumn
impl RefUnwindSafe for EncryptedColumn
impl Send for EncryptedColumn
impl Sync for EncryptedColumn
impl Unpin for EncryptedColumn
impl UnsafeUnpin for EncryptedColumn
impl UnwindSafe for EncryptedColumn
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