pub struct PulseResponse {
pub active_tasks: Vec<PulseTask>,
pub blocked_tasks: Vec<PulseTask>,
pub pending_review: Vec<PulseTask>,
pub recently_completed: Vec<PulseTask>,
pub unread_events: i64,
pub agents: Vec<PulseAgent>,
pub recent_knowledge_updates: Vec<PulseKnowledge>,
pub blocked_by_deps: i64,
}Fields§
§active_tasks: Vec<PulseTask>§blocked_tasks: Vec<PulseTask>§pending_review: Vec<PulseTask>§recently_completed: Vec<PulseTask>§unread_events: i64§agents: Vec<PulseAgent>§recent_knowledge_updates: Vec<PulseKnowledge>§blocked_by_deps: i64Number of tasks currently blocked by unmet dependencies
Trait Implementations§
Source§impl Debug for PulseResponse
impl Debug for PulseResponse
Auto Trait Implementations§
impl Freeze for PulseResponse
impl RefUnwindSafe for PulseResponse
impl Send for PulseResponse
impl Sync for PulseResponse
impl Unpin for PulseResponse
impl UnsafeUnpin for PulseResponse
impl UnwindSafe for PulseResponse
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