pub enum ValueReduction {
Boolean {
value: bool,
},
FieldElement {
value: BigInt,
},
}Variants§
Trait Implementations§
source§impl Clone for ValueReduction
impl Clone for ValueReduction
source§fn clone(&self) -> ValueReduction
fn clone(&self) -> ValueReduction
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 ValueReduction
impl Debug for ValueReduction
source§impl Display for ValueReduction
impl Display for ValueReduction
source§impl Hash for ValueReduction
impl Hash for ValueReduction
source§impl PartialEq<ValueReduction> for ValueReduction
impl PartialEq<ValueReduction> for ValueReduction
source§fn eq(&self, other: &ValueReduction) -> bool
fn eq(&self, other: &ValueReduction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.