pub struct SetStatement {
pub assignments: Vec<PropertyAssignment>,
pub span: Option<SourceSpan>,
}Expand description
A SET statement.
Fields§
§assignments: Vec<PropertyAssignment>Property assignments.
span: Option<SourceSpan>Source span.
Trait Implementations§
Source§impl Clone for SetStatement
impl Clone for SetStatement
Source§fn clone(&self) -> SetStatement
fn clone(&self) -> SetStatement
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 moreAuto Trait Implementations§
impl Freeze for SetStatement
impl RefUnwindSafe for SetStatement
impl Send for SetStatement
impl Sync for SetStatement
impl Unpin for SetStatement
impl UnwindSafe for SetStatement
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