pub struct StatusResponse {
pub task: Option<Value>,
pub todos: Vec<Value>,
pub links: Vec<Value>,
pub scraps: Vec<Value>,
pub worktrees: Vec<Value>,
pub repos: Vec<Value>,
pub workflow: Option<WorkflowContext>,
pub vcs_mode: Option<VcsMode>,
pub jj: Option<JjAgentContext>,
pub git: Option<GitAgentContext>,
pub todos_agent: Option<Vec<TodoAgentView>>,
pub guardrails: Option<AgentGuardrails>,
}Expand description
JSON API payload for /api/status.
Fields§
§task: Option<Value>§todos: Vec<Value>§links: Vec<Value>§scraps: Vec<Value>§worktrees: Vec<Value>§repos: Vec<Value>§workflow: Option<WorkflowContext>§vcs_mode: Option<VcsMode>§jj: Option<JjAgentContext>§git: Option<GitAgentContext>§todos_agent: Option<Vec<TodoAgentView>>§guardrails: Option<AgentGuardrails>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StatusResponse
impl RefUnwindSafe for StatusResponse
impl Send for StatusResponse
impl Sync for StatusResponse
impl Unpin for StatusResponse
impl UnsafeUnpin for StatusResponse
impl UnwindSafe for StatusResponse
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