pub struct Variable {
pub variable_name: Box<Node>,
pub variable_type: Option<Box<Node>>,
pub variable_value: Option<Box<Node>>,
}Fields
variable_name: Box<Node>variable_type: Option<Box<Node>>variable_value: Option<Box<Node>>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnwindSafe for Variable
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more