Struct boreal_parser::expression::VariableSet
source · pub struct VariableSet {
pub elements: Vec<SetElement>,
}Expand description
Set of multiple variables.
Fields§
§elements: Vec<SetElement>Names of the variables in the set.
If empty, the set is considered as containing all variables.
Trait Implementations§
source§impl Clone for VariableSet
impl Clone for VariableSet
source§fn clone(&self) -> VariableSet
fn clone(&self) -> VariableSet
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 moresource§impl Debug for VariableSet
impl Debug for VariableSet
source§impl PartialEq for VariableSet
impl PartialEq for VariableSet
source§fn eq(&self, other: &VariableSet) -> bool
fn eq(&self, other: &VariableSet) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for VariableSet
impl StructuralPartialEq for VariableSet
Auto Trait Implementations§
impl RefUnwindSafe for VariableSet
impl Send for VariableSet
impl Sync for VariableSet
impl Unpin for VariableSet
impl UnwindSafe for VariableSet
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