pub struct StackItem<F> {
pub index: u32,
pub witness: WitnessMap<F>,
}Fields§
§index: u32Index into a crate::circuit::Program function list for which we have an associated witness
witness: WitnessMap<F>A full witness for the respective constraint system specified by the index
Trait Implementations§
Source§impl<'de, F> Deserialize<'de> for StackItem<F>where
F: Deserialize<'de>,
impl<'de, F> Deserialize<'de> for StackItem<F>where
F: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<F: Ord> Ord for StackItem<F>
impl<F: Ord> Ord for StackItem<F>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<F: PartialOrd> PartialOrd for StackItem<F>
impl<F: PartialOrd> PartialOrd for StackItem<F>
impl<F: Eq> Eq for StackItem<F>
impl<F> StructuralPartialEq for StackItem<F>
Auto Trait Implementations§
impl<F> Freeze for StackItem<F>
impl<F> RefUnwindSafe for StackItem<F>where
F: RefUnwindSafe,
impl<F> Send for StackItem<F>where
F: Send,
impl<F> Sync for StackItem<F>where
F: Sync,
impl<F> Unpin for StackItem<F>
impl<F> UnwindSafe for StackItem<F>where
F: RefUnwindSafe,
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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