pub struct CompiledPkDelete {
pub table_name: SmartString,
pub schema: CompactArc<Schema>,
pub pk_column_name: SmartString,
pub pk_value_source: PkValueSource,
pub cached_epoch: u64,
}Expand description
Pre-bound state for a primary-key DELETE.
Fields§
§table_name: SmartString§schema: CompactArc<Schema>§pk_column_name: SmartString§pk_value_source: PkValueSource§cached_epoch: u64Trait Implementations§
Source§impl Clone for CompiledPkDelete
impl Clone for CompiledPkDelete
Source§fn clone(&self) -> CompiledPkDelete
fn clone(&self) -> CompiledPkDelete
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 CompiledPkDelete
impl RefUnwindSafe for CompiledPkDelete
impl Send for CompiledPkDelete
impl Sync for CompiledPkDelete
impl Unpin for CompiledPkDelete
impl UnsafeUnpin for CompiledPkDelete
impl UnwindSafe for CompiledPkDelete
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