pub struct PlannerConfig {
pub available_memory_bytes: u64,
pub noise_level: Option<f64>,
pub shot_budget: u32,
pub target_precision: f64,
}Expand description
Configuration for the execution planner.
Fields§
§available_memory_bytes: u64Available system memory in bytes (default: 8 GiB).
noise_level: Option<f64>Optional noise level from 0.0 (noiseless) to 1.0 (fully depolarized).
None means noiseless simulation.
shot_budget: u32Maximum total shots the user is willing to spend.
target_precision: f64Target precision for observable estimation (standard error).
Trait Implementations§
Source§impl Clone for PlannerConfig
impl Clone for PlannerConfig
Source§fn clone(&self) -> PlannerConfig
fn clone(&self) -> PlannerConfig
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 PlannerConfig
impl Debug for PlannerConfig
Auto Trait Implementations§
impl Freeze for PlannerConfig
impl RefUnwindSafe for PlannerConfig
impl Send for PlannerConfig
impl Sync for PlannerConfig
impl Unpin for PlannerConfig
impl UnsafeUnpin for PlannerConfig
impl UnwindSafe for PlannerConfig
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