pub struct FeatureGraphNode {
pub id: i64,
pub name: String,
pub category: String,
pub priority: i32,
pub passes: bool,
pub in_progress: bool,
pub blocked: bool,
pub dependencies: Vec<i64>,
pub dependents: Vec<i64>,
}Expand description
A node in the dependency graph visualization.
Fields§
§id: i64§name: String§category: String§priority: i32§passes: bool§in_progress: bool§blocked: bool§dependencies: Vec<i64>§dependents: Vec<i64>Trait Implementations§
Source§impl Clone for FeatureGraphNode
impl Clone for FeatureGraphNode
Source§fn clone(&self) -> FeatureGraphNode
fn clone(&self) -> FeatureGraphNode
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 FeatureGraphNode
impl Debug for FeatureGraphNode
Source§impl<'de> Deserialize<'de> for FeatureGraphNode
impl<'de> Deserialize<'de> for FeatureGraphNode
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 FeatureGraphNode
impl RefUnwindSafe for FeatureGraphNode
impl Send for FeatureGraphNode
impl Sync for FeatureGraphNode
impl Unpin for FeatureGraphNode
impl UnwindSafe for FeatureGraphNode
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