pub struct DistributionPlan {
pub assignments: Vec<Assignment>,
pub phases: Vec<PlanPhase>,
pub data_transfers: Vec<DataTransfer>,
pub warnings: Vec<String>,
}Expand description
The complete distribution plan produced by the scheduler.
Fields§
§assignments: Vec<Assignment>§phases: Vec<PlanPhase>§data_transfers: Vec<DataTransfer>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for DistributionPlan
impl Clone for DistributionPlan
Source§fn clone(&self) -> DistributionPlan
fn clone(&self) -> DistributionPlan
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 DistributionPlan
impl Debug for DistributionPlan
Source§impl<'de> Deserialize<'de> for DistributionPlan
impl<'de> Deserialize<'de> for DistributionPlan
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 DistributionPlan
impl RefUnwindSafe for DistributionPlan
impl Send for DistributionPlan
impl Sync for DistributionPlan
impl Unpin for DistributionPlan
impl UnsafeUnpin for DistributionPlan
impl UnwindSafe for DistributionPlan
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