pub struct RustBackend { /* private fields */ }
Implementations§
Source§impl RustBackend
impl RustBackend
Sourcepub fn evaluate_single_node<II: InputIndicator>(
&self,
circuit: &ConstraintCircuit<II>,
) -> TokenStream
pub fn evaluate_single_node<II: InputIndicator>( &self, circuit: &ConstraintCircuit<II>, ) -> TokenStream
Recursively construct the code for evaluating a single node.
Trait Implementations§
Source§impl Clone for RustBackend
impl Clone for RustBackend
Source§fn clone(&self) -> RustBackend
fn clone(&self) -> RustBackend
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 Codegen for RustBackend
impl Codegen for RustBackend
fn constraint_evaluation_code(constraints: &Constraints) -> TokenStream
fn tokenize_bfe(bfe: BFieldElement) -> TokenStream
fn tokenize_xfe(xfe: XFieldElement) -> TokenStream
Source§impl Debug for RustBackend
impl Debug for RustBackend
Source§impl Default for RustBackend
impl Default for RustBackend
Source§fn default() -> RustBackend
fn default() -> RustBackend
Returns the “default value” for a type. Read more
Source§impl PartialEq for RustBackend
impl PartialEq for RustBackend
impl Eq for RustBackend
impl StructuralPartialEq for RustBackend
Auto Trait Implementations§
impl Freeze for RustBackend
impl RefUnwindSafe for RustBackend
impl Send for RustBackend
impl Sync for RustBackend
impl Unpin for RustBackend
impl UnwindSafe for RustBackend
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more