pub struct SetAssignment {
pub attribute: String,
pub value: SetValue,
}Expand description
SET assignment (SET attr = value)
Fields§
§attribute: StringAttribute name
value: SetValueValue expression (can be literal or arithmetic like “age + 1”)
Trait Implementations§
Source§impl Clone for SetAssignment
impl Clone for SetAssignment
Source§fn clone(&self) -> SetAssignment
fn clone(&self) -> SetAssignment
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 SetAssignment
impl Debug for SetAssignment
Source§impl PartialEq for SetAssignment
impl PartialEq for SetAssignment
impl StructuralPartialEq for SetAssignment
Auto Trait Implementations§
impl Freeze for SetAssignment
impl RefUnwindSafe for SetAssignment
impl Send for SetAssignment
impl Sync for SetAssignment
impl Unpin for SetAssignment
impl UnwindSafe for SetAssignment
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