pub struct RootHintsConfig {
pub max_polynomials: usize,
pub max_hints_per_poly: usize,
pub enable_refinement: bool,
}Expand description
Configuration for root hints cache.
Fields§
§max_polynomials: usizeMaximum number of polynomial hint sets to cache.
max_hints_per_poly: usizeMaximum number of hints per polynomial.
enable_refinement: boolEnable hint refinement tracking.
Trait Implementations§
Source§impl Clone for RootHintsConfig
impl Clone for RootHintsConfig
Source§fn clone(&self) -> RootHintsConfig
fn clone(&self) -> RootHintsConfig
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 RootHintsConfig
impl Debug for RootHintsConfig
Auto Trait Implementations§
impl Freeze for RootHintsConfig
impl RefUnwindSafe for RootHintsConfig
impl Send for RootHintsConfig
impl Sync for RootHintsConfig
impl Unpin for RootHintsConfig
impl UnsafeUnpin for RootHintsConfig
impl UnwindSafe for RootHintsConfig
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§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