pub struct GlobalVariableStatement {
pub name: String,
pub value: Box<dyn Expr>,
}
Fields§
§name: String
§value: Box<dyn Expr>
Trait Implementations§
Source§impl Clone for GlobalVariableStatement
impl Clone for GlobalVariableStatement
Source§fn clone(&self) -> GlobalVariableStatement
fn clone(&self) -> GlobalVariableStatement
Returns a copy 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 GlobalVariableStatement
impl !RefUnwindSafe for GlobalVariableStatement
impl !Send for GlobalVariableStatement
impl !Sync for GlobalVariableStatement
impl Unpin for GlobalVariableStatement
impl !UnwindSafe for GlobalVariableStatement
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