pub struct ProofShape {
pub chip_information: Vec<(String, usize)>,
}
Fields§
§chip_information: Vec<(String, usize)>
Implementations§
source§impl ProofShape
impl ProofShape
pub fn from_traces<V: Clone + Send + Sync>( global_traces: Option<&[(String, RowMajorMatrix<V>)]>, local_traces: &[(String, RowMajorMatrix<V>)], ) -> Self
Trait Implementations§
source§impl Clone for ProofShape
impl Clone for ProofShape
source§fn clone(&self) -> ProofShape
fn clone(&self) -> ProofShape
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 ProofShape
impl Debug for ProofShape
source§impl<'de> Deserialize<'de> for ProofShape
impl<'de> Deserialize<'de> for ProofShape
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 Display for ProofShape
impl Display for ProofShape
source§impl FromIterator<(String, usize)> for ProofShape
impl FromIterator<(String, usize)> for ProofShape
source§impl Hash for ProofShape
impl Hash for ProofShape
source§impl IntoIterator for ProofShape
impl IntoIterator for ProofShape
source§impl Ord for ProofShape
impl Ord for ProofShape
source§fn cmp(&self, other: &ProofShape) -> Ordering
fn cmp(&self, other: &ProofShape) -> Ordering
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 PartialEq for ProofShape
impl PartialEq for ProofShape
source§impl PartialOrd for ProofShape
impl PartialOrd for ProofShape
source§impl Serialize for ProofShape
impl Serialize for ProofShape
impl Eq for ProofShape
impl StructuralPartialEq for ProofShape
Auto Trait Implementations§
impl Freeze for ProofShape
impl RefUnwindSafe for ProofShape
impl Send for ProofShape
impl Sync for ProofShape
impl Unpin for ProofShape
impl UnwindSafe for ProofShape
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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