pub enum PkValueSource {
Parameter(usize),
Literal(i64),
NamedParameter(SmartString),
}Expand description
How a compiled statement obtains its primary-key value.
Variants§
Trait Implementations§
Source§impl Clone for PkValueSource
impl Clone for PkValueSource
Source§fn clone(&self) -> PkValueSource
fn clone(&self) -> PkValueSource
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 PkValueSource
impl RefUnwindSafe for PkValueSource
impl Send for PkValueSource
impl Sync for PkValueSource
impl Unpin for PkValueSource
impl UnsafeUnpin for PkValueSource
impl UnwindSafe for PkValueSource
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