pub struct GraphNodeRow {
pub issue_number: u32,
pub session_id: String,
pub state: NodeState,
pub pr_number: Option<u32>,
pub run_id: Option<String>,
pub title: String,
pub area: String,
pub predicted_files: Vec<String>,
pub has_migration: bool,
pub complexity: String,
pub target_repo: Option<String>,
}Expand description
A row from the graph_nodes table.
Fields§
§issue_number: u32§session_id: String§state: NodeState§pr_number: Option<u32>§run_id: Option<String>§title: String§area: String§predicted_files: Vec<String>§has_migration: bool§complexity: String§target_repo: Option<String>Trait Implementations§
Source§impl Clone for GraphNodeRow
impl Clone for GraphNodeRow
Source§fn clone(&self) -> GraphNodeRow
fn clone(&self) -> GraphNodeRow
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 moreAuto Trait Implementations§
impl Freeze for GraphNodeRow
impl RefUnwindSafe for GraphNodeRow
impl Send for GraphNodeRow
impl Sync for GraphNodeRow
impl Unpin for GraphNodeRow
impl UnsafeUnpin for GraphNodeRow
impl UnwindSafe for GraphNodeRow
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