pub struct EamTaskForceResult {
pub task: String,
pub owner: String,
pub dispatched: bool,
pub history: Option<EamHistoryItem>,
pub preview: BlastRadiusPreview,
}Expand description
ign eam task force output model — all keys always.
Fields§
§task: StringThe dispatched task’s name.
owner: StringThe owner the force POST targeted (from the healthcheck’s
scheduledTaskState.details.owner, fallback "eam").
dispatched: boolAlways true on this shape — the 2xx IS dispatch acceptance
(execution outcomes land in history as data).
history: Option<EamHistoryItem>The newest matching history entry after dispatch (null when
none is visible yet) — its level/detail honestly surface
GNET-not-connected / trial-expired outcomes.
preview: BlastRadiusPreviewThe composed blast-radius preview (10-03, EAMW-04: force composes with the preview surface) — the same pre-flight the CLI’s confirmation prompt renders: targets, pending executions, the factual controller impact. Additive field; the serde shape stays agent-stable (all keys always).
Trait Implementations§
Source§impl Debug for EamTaskForceResult
impl Debug for EamTaskForceResult
Auto Trait Implementations§
impl Freeze for EamTaskForceResult
impl RefUnwindSafe for EamTaskForceResult
impl Send for EamTaskForceResult
impl Sync for EamTaskForceResult
impl Unpin for EamTaskForceResult
impl UnsafeUnpin for EamTaskForceResult
impl UnwindSafe for EamTaskForceResult
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