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