pub struct ParallelExecutionPlan {
pub stages: Vec<ExecutionStage>,
pub dependencies: HashMap<String, Vec<String>>,
pub resource_requirements: HashMap<String, ResourceRequirement>,
pub estimated_parallelism: usize,
}
Expand description
並列実行計画
Fields§
§stages: Vec<ExecutionStage>
§dependencies: HashMap<String, Vec<String>>
§resource_requirements: HashMap<String, ResourceRequirement>
§estimated_parallelism: usize
Trait Implementations§
Source§impl Clone for ParallelExecutionPlan
impl Clone for ParallelExecutionPlan
Source§fn clone(&self) -> ParallelExecutionPlan
fn clone(&self) -> ParallelExecutionPlan
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 ParallelExecutionPlan
impl Debug for ParallelExecutionPlan
Source§impl<'de> Deserialize<'de> for ParallelExecutionPlan
impl<'de> Deserialize<'de> for ParallelExecutionPlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParallelExecutionPlan
impl RefUnwindSafe for ParallelExecutionPlan
impl Send for ParallelExecutionPlan
impl Sync for ParallelExecutionPlan
impl Unpin for ParallelExecutionPlan
impl UnwindSafe for ParallelExecutionPlan
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