pub struct GraphPlan {
pub graph: GraphSpec,
pub topological_order: Vec<NodeId>,
pub parallel_levels: Vec<Vec<NodeId>>,
}Fields§
§graph: GraphSpec§topological_order: Vec<NodeId>§parallel_levels: Vec<Vec<NodeId>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphPlan
impl<'de> Deserialize<'de> for GraphPlan
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
impl StructuralPartialEq for GraphPlan
Auto Trait Implementations§
impl Freeze for GraphPlan
impl RefUnwindSafe for GraphPlan
impl Send for GraphPlan
impl Sync for GraphPlan
impl Unpin for GraphPlan
impl UnsafeUnpin for GraphPlan
impl UnwindSafe for GraphPlan
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