Struct kimchi_stubs::plonk_verifier_index::CamlLookupInfo
source · pub struct CamlLookupInfo {
pub max_per_row: Int,
pub max_joint_size: Int,
pub features: LookupFeatures,
}
Fields§
§max_per_row: Int
The maximum length of an element of kinds
. This can be computed from kinds
.
max_joint_size: Int
The maximum joint size of any joint lookup in a constraint in kinds
. This can be computed from kinds
.
features: LookupFeatures
Trait Implementations§
source§impl From<CamlLookupInfo> for LookupInfo
impl From<CamlLookupInfo> for LookupInfo
source§fn from(li: CamlLookupInfo) -> LookupInfo
fn from(li: CamlLookupInfo) -> LookupInfo
Converts to this type from the input type.
source§impl From<LookupInfo> for CamlLookupInfo
impl From<LookupInfo> for CamlLookupInfo
source§fn from(li: LookupInfo) -> CamlLookupInfo
fn from(li: LookupInfo) -> CamlLookupInfo
Converts to this type from the input type.
source§impl<'from_value_lifetime> FromValue<'from_value_lifetime> for CamlLookupInfo
impl<'from_value_lifetime> FromValue<'from_value_lifetime> for CamlLookupInfo
source§fn from_value(value: Value) -> Self
fn from_value(value: Value) -> Self
Convert from OCaml value
source§impl IntoValue for CamlLookupInfo
impl IntoValue for CamlLookupInfo
source§fn into_value(self, gc: &Runtime) -> Value
fn into_value(self, gc: &Runtime) -> Value
Convert to OCaml value
source§impl OCamlBinding for CamlLookupInfo
impl OCamlBinding for CamlLookupInfo
source§impl OCamlDesc for CamlLookupInfo
impl OCamlDesc for CamlLookupInfo
source§fn ocaml_desc(env: &Env, generics: &[&str]) -> String
fn ocaml_desc(env: &Env, generics: &[&str]) -> String
describes the type in OCaml, given the current environment [Env]
and the list of generic type parameters of the root type
(the type that makes use of this type)
Auto Trait Implementations§
impl RefUnwindSafe for CamlLookupInfo
impl Send for CamlLookupInfo
impl Sync for CamlLookupInfo
impl Unpin for CamlLookupInfo
impl UnwindSafe for CamlLookupInfo
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