pub enum ComputationType {
Arithmetic,
Boolean,
Custom,
}
Expand description
Types of computations that can be proven
Variants§
Trait Implementations§
Source§impl Clone for ComputationType
impl Clone for ComputationType
Source§fn clone(&self) -> ComputationType
fn clone(&self) -> ComputationType
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 ComputationType
impl Debug for ComputationType
Source§impl PartialEq for ComputationType
impl PartialEq for ComputationType
impl Eq for ComputationType
impl StructuralPartialEq for ComputationType
Auto Trait Implementations§
impl Freeze for ComputationType
impl RefUnwindSafe for ComputationType
impl Send for ComputationType
impl Sync for ComputationType
impl Unpin for ComputationType
impl UnwindSafe for ComputationType
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