pub struct Workstream {
pub id: String,
pub name: String,
pub repo_id: String,
pub branch: String,
pub worktree_path: String,
pub tmux_session: String,
pub status: WorkstreamStatus,
pub agents: Vec<Agent>,
pub created_at: u64,
}Fields§
§id: String§name: String§repo_id: String§branch: String§worktree_path: StringAbsolute path: $VEX_HOME/worktrees/<workstream_id>
tmux_session: StringAlways "vex-<workstream_id>"
status: WorkstreamStatus§agents: Vec<Agent>§created_at: u64Trait Implementations§
Source§impl Clone for Workstream
impl Clone for Workstream
Source§fn clone(&self) -> Workstream
fn clone(&self) -> Workstream
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 Workstream
impl Debug for Workstream
Source§impl<'de> Deserialize<'de> for Workstream
impl<'de> Deserialize<'de> for Workstream
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 Workstream
impl RefUnwindSafe for Workstream
impl Send for Workstream
impl Sync for Workstream
impl Unpin for Workstream
impl UnsafeUnpin for Workstream
impl UnwindSafe for Workstream
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