pub struct Run {Show 13 fields
pub id: String,
pub issue_number: u32,
pub status: RunStatus,
pub pr_number: Option<u32>,
pub branch: Option<String>,
pub worktree_path: Option<String>,
pub cost_usd: f64,
pub auto_merge: bool,
pub started_at: String,
pub finished_at: Option<String>,
pub error_message: Option<String>,
pub complexity: String,
pub issue_source: String,
}Expand description
A pipeline run record.
Fields§
§id: String§issue_number: u32§status: RunStatus§pr_number: Option<u32>§branch: Option<String>§worktree_path: Option<String>§cost_usd: f64§auto_merge: bool§started_at: String§finished_at: Option<String>§error_message: Option<String>§complexity: String§issue_source: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Run
impl RefUnwindSafe for Run
impl Send for Run
impl Sync for Run
impl Unpin for Run
impl UnsafeUnpin for Run
impl UnwindSafe for Run
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