pub struct VariableSetStmt {
pub kind: Box<VariableSetKind>,
pub name: Option<String>,
pub args: Option<Vec<Node>>,
pub is_local: bool,
}
Fields§
§kind: Box<VariableSetKind>
§name: Option<String>
§args: Option<Vec<Node>>
§is_local: bool
Trait Implementations§
Source§impl Debug for VariableSetStmt
impl Debug for VariableSetStmt
Source§impl<'de> Deserialize<'de> for VariableSetStmt
impl<'de> Deserialize<'de> for VariableSetStmt
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
Auto Trait Implementations§
impl Freeze for VariableSetStmt
impl RefUnwindSafe for VariableSetStmt
impl Send for VariableSetStmt
impl Sync for VariableSetStmt
impl Unpin for VariableSetStmt
impl UnwindSafe for VariableSetStmt
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