pub struct ExactInductionConfig {
pub k_per_topology: u32,
pub deterministic: bool,
}Expand description
Engine configuration for one exact-induction request.
Fields§
§k_per_topology: u32Number of top candidates to keep per topology (e.g. 2).
deterministic: boolReserved for future use; the native engine is inherently deterministic.
Trait Implementations§
Source§impl Clone for ExactInductionConfig
impl Clone for ExactInductionConfig
Source§fn clone(&self) -> ExactInductionConfig
fn clone(&self) -> ExactInductionConfig
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 ExactInductionConfig
impl Debug for ExactInductionConfig
impl Copy for ExactInductionConfig
Auto Trait Implementations§
impl Freeze for ExactInductionConfig
impl RefUnwindSafe for ExactInductionConfig
impl Send for ExactInductionConfig
impl Sync for ExactInductionConfig
impl Unpin for ExactInductionConfig
impl UnsafeUnpin for ExactInductionConfig
impl UnwindSafe for ExactInductionConfig
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