pub struct SetStatement {
pub token: Token,
pub name: Identifier,
pub value: Expression,
}Expand description
SET statement
Fields§
§token: Token§name: Identifier§value: ExpressionTrait 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 (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 SetStatement
impl Debug for SetStatement
Source§impl Display for SetStatement
impl Display for SetStatement
Source§impl PartialEq for SetStatement
impl PartialEq for SetStatement
impl StructuralPartialEq for SetStatement
Auto Trait Implementations§
impl Freeze for SetStatement
impl RefUnwindSafe for SetStatement
impl Send for SetStatement
impl Sync for SetStatement
impl Unpin for SetStatement
impl UnsafeUnpin 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