pub struct ComputePlan {
pub pools: Vec<ComputePoolPlan>,
}Expand description
Full compute plan for one stack/platform pair.
Fields§
§pools: Vec<ComputePoolPlan>Planned pools in stable pool-id order.
Trait Implementations§
Source§impl Clone for ComputePlan
impl Clone for ComputePlan
Source§fn clone(&self) -> ComputePlan
fn clone(&self) -> ComputePlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ComputePlan
impl Debug for ComputePlan
Source§impl<'de> Deserialize<'de> for ComputePlan
impl<'de> Deserialize<'de> for ComputePlan
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
Source§impl PartialEq for ComputePlan
impl PartialEq for ComputePlan
Source§fn eq(&self, other: &ComputePlan) -> bool
fn eq(&self, other: &ComputePlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComputePlan
impl Serialize for ComputePlan
impl StructuralPartialEq for ComputePlan
Auto Trait Implementations§
impl Freeze for ComputePlan
impl RefUnwindSafe for ComputePlan
impl Send for ComputePlan
impl Sync for ComputePlan
impl Unpin for ComputePlan
impl UnsafeUnpin for ComputePlan
impl UnwindSafe for ComputePlan
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