pub enum EvaluationValue {
Group(Group),
Integer(LitInt),
String(LitStr),
}
Variants§
Trait Implementations§
source§impl Clone for EvaluationValue
impl Clone for EvaluationValue
source§fn clone(&self) -> EvaluationValue
fn clone(&self) -> EvaluationValue
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 EvaluationValue
impl Debug for EvaluationValue
source§impl Parse for EvaluationValue
impl Parse for EvaluationValue
Auto Trait Implementations§
impl Freeze for EvaluationValue
impl RefUnwindSafe for EvaluationValue
impl !Send for EvaluationValue
impl !Sync for EvaluationValue
impl Unpin for EvaluationValue
impl UnwindSafe for EvaluationValue
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