pub struct AirStatistics {
pub air_name: String,
pub num_nodes: usize,
pub num_interactions: usize,
pub num_constraints: usize,
pub max_constraint_depth: usize,
pub average_constraint_depth: f64,
pub num_constants: usize,
pub num_variables: usize,
pub num_intermediates: usize,
pub max_intermediate_use: usize,
pub average_intermediate_use: f64,
}Fields§
§air_name: String§num_nodes: usize§num_interactions: usize§num_constraints: usize§max_constraint_depth: usize§average_constraint_depth: f64§num_constants: usize§num_variables: usize§num_intermediates: usize§max_intermediate_use: usize§average_intermediate_use: f64Trait Implementations§
Source§impl Clone for AirStatistics
impl Clone for AirStatistics
Source§fn clone(&self) -> AirStatistics
fn clone(&self) -> AirStatistics
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 AirStatistics
impl Debug for AirStatistics
Source§impl Default for AirStatistics
impl Default for AirStatistics
Source§fn default() -> AirStatistics
fn default() -> AirStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AirStatistics
impl<'de> Deserialize<'de> for AirStatistics
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
Auto Trait Implementations§
impl Freeze for AirStatistics
impl RefUnwindSafe for AirStatistics
impl Send for AirStatistics
impl Sync for AirStatistics
impl Unpin for AirStatistics
impl UnwindSafe for AirStatistics
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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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