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 duplicate 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
impl Eq for VariableSet
impl StructuralPartialEq for VariableSet
Auto Trait Implementations§
impl Freeze for VariableSet
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