pub struct ProcessingPlan {
pub strategy: ProcessingStrategy,
pub primary_module: String,
pub module_chain: Vec<String>,
pub parallel_modules: Vec<String>,
pub estimated_duration: Duration,
pub resource_requirements: ResourceRequirements,
}Expand description
Processing plan for advanced operations
Fields§
§strategy: ProcessingStrategy§primary_module: String§module_chain: Vec<String>§parallel_modules: Vec<String>§estimated_duration: Duration§resource_requirements: ResourceRequirementsTrait Implementations§
Source§impl Clone for ProcessingPlan
impl Clone for ProcessingPlan
Source§fn clone(&self) -> ProcessingPlan
fn clone(&self) -> ProcessingPlan
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 ProcessingPlan
impl RefUnwindSafe for ProcessingPlan
impl Send for ProcessingPlan
impl Sync for ProcessingPlan
impl Unpin for ProcessingPlan
impl UnwindSafe for ProcessingPlan
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