pub enum RuleArgument {
V(f64),
Vf(f64),
Vt(String),
VtfNumber(f64),
VtfText(String),
}
Expand description
argument of a rule-based value specification
Variants§
V(f64)
V: argument is a numerical value
Vf(f64)
VF: argument is a numerical value
Vt(String)
VT: argument is a text value
VtfNumber(f64)
VTF: argument is a numerical value
VtfText(String)
VTF: argument is a text value
Trait Implementations§
Source§impl Clone for RuleArgument
impl Clone for RuleArgument
Source§fn clone(&self) -> RuleArgument
fn clone(&self) -> RuleArgument
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 RuleArgument
impl Debug for RuleArgument
Source§impl PartialEq for RuleArgument
impl PartialEq for RuleArgument
impl StructuralPartialEq for RuleArgument
Auto Trait Implementations§
impl Freeze for RuleArgument
impl RefUnwindSafe for RuleArgument
impl Send for RuleArgument
impl Sync for RuleArgument
impl Unpin for RuleArgument
impl UnwindSafe for RuleArgument
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