pub struct PlannedNode {
pub number: u32,
pub title: String,
pub area: String,
pub predicted_files: Vec<String>,
pub has_migration: bool,
pub complexity: Complexity,
pub depends_on: Vec<u32>,
pub reasoning: String,
}Expand description
A single issue node in the planner’s DAG output.
Fields§
§number: u32§title: String§area: String§predicted_files: Vec<String>§has_migration: bool§complexity: Complexity§depends_on: Vec<u32>§reasoning: StringTrait Implementations§
Source§impl Debug for PlannedNode
impl Debug for PlannedNode
Source§impl<'de> Deserialize<'de> for PlannedNode
impl<'de> Deserialize<'de> for PlannedNode
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 PlannedNode
impl RefUnwindSafe for PlannedNode
impl Send for PlannedNode
impl Sync for PlannedNode
impl Unpin for PlannedNode
impl UnsafeUnpin for PlannedNode
impl UnwindSafe for PlannedNode
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