pub struct StrategyConfig {
pub name: String,
pub max_concurrent_tasks: usize,
pub timeout: Option<Duration>,
pub resource_constraints: ResourceConstraints,
pub performance_goals: PerformanceGoals,
pub fault_tolerance: FaultToleranceConfig,
pub enable_metrics: bool,
pub enable_logging: bool,
pub custom_params: HashMap<String, String>,
pub priority: StrategyPriority,
pub environment: ExecutionEnvironment,
}Expand description
Strategy configuration settings
Fields§
§name: StringStrategy name identifier
max_concurrent_tasks: usizeMaximum concurrent tasks
timeout: Option<Duration>Task execution timeout
resource_constraints: ResourceConstraintsResource constraints
performance_goals: PerformanceGoalsPerformance goals
fault_tolerance: FaultToleranceConfigFault tolerance configuration
enable_metrics: boolEnable metrics collection
enable_logging: boolEnable detailed logging
custom_params: HashMap<String, String>Custom configuration parameters
priority: StrategyPriorityStrategy priority
environment: ExecutionEnvironmentExecution environment
Trait Implementations§
Source§impl Clone for StrategyConfig
impl Clone for StrategyConfig
Source§fn clone(&self) -> StrategyConfig
fn clone(&self) -> StrategyConfig
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 StrategyConfig
impl Debug for StrategyConfig
Auto Trait Implementations§
impl Freeze for StrategyConfig
impl RefUnwindSafe for StrategyConfig
impl Send for StrategyConfig
impl Sync for StrategyConfig
impl Unpin for StrategyConfig
impl UnwindSafe for StrategyConfig
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