pub struct RunStart<'a> {
pub run_id: &'a str,
pub branch: &'a str,
pub worktree_path: &'a str,
pub pid: u32,
pub pid_start_time: Option<i64>,
pub process_group_id: u32,
pub worker_token: &'a str,
pub worker_socket_path: &'a str,
}Expand description
Facts about a launched agent process, recorded when the run turns running.
Fields§
§run_id: &'a str§branch: &'a str§worktree_path: &'a str§pid: u32§pid_start_time: Option<i64>§process_group_id: u32§worker_token: &'a str§worker_socket_path: &'a strAuto Trait Implementations§
impl<'a> Freeze for RunStart<'a>
impl<'a> RefUnwindSafe for RunStart<'a>
impl<'a> Send for RunStart<'a>
impl<'a> Sync for RunStart<'a>
impl<'a> Unpin for RunStart<'a>
impl<'a> UnsafeUnpin for RunStart<'a>
impl<'a> UnwindSafe for RunStart<'a>
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