pub struct JsonFieldUpdate {
pub set: Option<Value>,
}Expand description
Update operators for a non-nullable Json column.
Fields§
§set: Option<Value>SET column = value
Trait Implementations§
Source§impl Clone for JsonFieldUpdate
impl Clone for JsonFieldUpdate
Source§fn clone(&self) -> JsonFieldUpdate
fn clone(&self) -> JsonFieldUpdate
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 moreSource§impl Debug for JsonFieldUpdate
impl Debug for JsonFieldUpdate
Source§impl Default for JsonFieldUpdate
impl Default for JsonFieldUpdate
Source§fn default() -> JsonFieldUpdate
fn default() -> JsonFieldUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JsonFieldUpdate
impl<'de> Deserialize<'de> for JsonFieldUpdate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for JsonFieldUpdate
impl PartialEq for JsonFieldUpdate
Source§fn eq(&self, other: &JsonFieldUpdate) -> bool
fn eq(&self, other: &JsonFieldUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JsonFieldUpdate
impl Serialize for JsonFieldUpdate
impl StructuralPartialEq for JsonFieldUpdate
Auto Trait Implementations§
impl Freeze for JsonFieldUpdate
impl RefUnwindSafe for JsonFieldUpdate
impl Send for JsonFieldUpdate
impl Sync for JsonFieldUpdate
impl Unpin for JsonFieldUpdate
impl UnsafeUnpin for JsonFieldUpdate
impl UnwindSafe for JsonFieldUpdate
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