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