pub trait Metrics<Op> where
    Op: ?Sized
{ type Case: ?Sized; fn count(parameter: &Self::Case) -> Count; }
Expand description

Trait for determining the number of constants, public input, private inputs, and constraints for an operation.

Required Associated Types

Required Methods

Returns the number of constants, public inputs, private inputs, and constraints.

Implementors