pub enum UpdateValue {
Field(UpdateField),
Value(Arg),
}Expand description
Update values payload.
Variants§
Field(UpdateField)
Value(Arg)
Trait Implementations§
Source§impl Clone for UpdateValue
impl Clone for UpdateValue
Source§fn clone(&self) -> UpdateValue
fn clone(&self) -> UpdateValue
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 UpdateValue
impl Debug for UpdateValue
Source§impl From<UpdateField> for UpdateValue
impl From<UpdateField> for UpdateValue
Source§fn from(v: UpdateField) -> Self
fn from(v: UpdateField) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdateValue
impl !RefUnwindSafe for UpdateValue
impl !Send for UpdateValue
impl !Sync for UpdateValue
impl Unpin for UpdateValue
impl !UnwindSafe for UpdateValue
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