pub struct ObjectInsert {
pub this: Box<Expression>,
pub key: Option<Box<Expression>>,
pub value: Option<Box<Expression>>,
pub update_flag: Option<Box<Expression>>,
}Expand description
ObjectInsert
Fields§
§this: Box<Expression>§key: Option<Box<Expression>>§value: Option<Box<Expression>>§update_flag: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for ObjectInsert
impl Clone for ObjectInsert
Source§fn clone(&self) -> ObjectInsert
fn clone(&self) -> ObjectInsert
Returns a duplicate of the value. Read more
1.0.0 · 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 ObjectInsert
impl Debug for ObjectInsert
Source§impl<'de> Deserialize<'de> for ObjectInsert
impl<'de> Deserialize<'de> for ObjectInsert
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 ObjectInsert
impl PartialEq for ObjectInsert
Source§impl Serialize for ObjectInsert
impl Serialize for ObjectInsert
impl StructuralPartialEq for ObjectInsert
Auto Trait Implementations§
impl Freeze for ObjectInsert
impl RefUnwindSafe for ObjectInsert
impl Send for ObjectInsert
impl Sync for ObjectInsert
impl Unpin for ObjectInsert
impl UnwindSafe for ObjectInsert
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