pub enum OptimizationAction {
Reallocate {
task_id: String,
old_allocation: ResourceAllocation,
new_allocation: ResourceAllocation,
},
Migrate {
task_id: String,
from_resources: AllocatedResources,
to_resources: AllocatedResources,
},
ScaleUp {
resource_type: ResourcePoolType,
amount: u64,
},
ScaleDown {
resource_type: ResourcePoolType,
amount: u64,
},
Consolidate {
task_ids: Vec<String>,
consolidated_allocation: ResourceAllocation,
},
AdjustFrequency {
resource_id: String,
frequency: f64,
},
}Expand description
Optimization actions to take
Variants§
Reallocate
Reallocate resources for a task
Migrate
Migrate task to different resources
ScaleUp
Scale resources up
ScaleDown
Scale resources down
Consolidate
Consolidate resources
AdjustFrequency
Adjust resource frequencies
Trait Implementations§
Source§impl Clone for OptimizationAction
impl Clone for OptimizationAction
Source§fn clone(&self) -> OptimizationAction
fn clone(&self) -> OptimizationAction
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 moreAuto Trait Implementations§
impl Freeze for OptimizationAction
impl RefUnwindSafe for OptimizationAction
impl Send for OptimizationAction
impl Sync for OptimizationAction
impl Unpin for OptimizationAction
impl UnwindSafe for OptimizationAction
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