pub struct StringFieldUpdate {
pub set: Option<String>,
}Expand description
Update operators for a non-nullable String column.
Fields§
§set: Option<String>SET column = value
Trait Implementations§
Source§impl Clone for StringFieldUpdate
impl Clone for StringFieldUpdate
Source§fn clone(&self) -> StringFieldUpdate
fn clone(&self) -> StringFieldUpdate
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 StringFieldUpdate
impl Debug for StringFieldUpdate
Source§impl Default for StringFieldUpdate
impl Default for StringFieldUpdate
Source§fn default() -> StringFieldUpdate
fn default() -> StringFieldUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StringFieldUpdate
impl<'de> Deserialize<'de> for StringFieldUpdate
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 From<&str> for StringFieldUpdate
impl From<&str> for StringFieldUpdate
Source§impl From<String> for StringFieldUpdate
impl From<String> for StringFieldUpdate
Source§impl PartialEq for StringFieldUpdate
impl PartialEq for StringFieldUpdate
Source§fn eq(&self, other: &StringFieldUpdate) -> bool
fn eq(&self, other: &StringFieldUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StringFieldUpdate
impl Serialize for StringFieldUpdate
impl Eq for StringFieldUpdate
impl StructuralPartialEq for StringFieldUpdate
Auto Trait Implementations§
impl Freeze for StringFieldUpdate
impl RefUnwindSafe for StringFieldUpdate
impl Send for StringFieldUpdate
impl Sync for StringFieldUpdate
impl Unpin for StringFieldUpdate
impl UnsafeUnpin for StringFieldUpdate
impl UnwindSafe for StringFieldUpdate
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