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 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 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 for ValueReduction
impl PartialEq for ValueReduction
impl Eq for ValueReduction
impl StructuralPartialEq for ValueReduction
Auto Trait Implementations§
impl Freeze for ValueReduction
impl RefUnwindSafe for ValueReduction
impl Send for ValueReduction
impl Sync for ValueReduction
impl Unpin for ValueReduction
impl UnwindSafe for ValueReduction
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