pub struct RunRerunFromResponse {
pub run_id: RunId,
pub task_id: TaskId,
pub replayed_steps: usize,
pub dropped_steps: usize,
}Expand description
Response body for POST /v1/runs/:id/rerun-from (GH #71 Layer A).
Fields§
§run_id: RunIdThe rerun’s Run id — echoes the path param. Rerun-from-step never
mints a new RunId; it re-runs in place so the replay-entry Ctx
snapshots (which bake this id into meta.runtime[run_id]) stay
consistent.
task_id: TaskIdThe Task this Run belongs to.
replayed_steps: usizeCount of pre-cut entries handed to the replay cursor — each is returned verbatim by the engine before fresh dispatch resumes at the cut point.
dropped_steps: usizeCount of entries physically dropped from the replay store — the target step’s row plus every downstream row.
Trait Implementations§
Source§impl Clone for RunRerunFromResponse
impl Clone for RunRerunFromResponse
Source§fn clone(&self) -> RunRerunFromResponse
fn clone(&self) -> RunRerunFromResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunRerunFromResponse
impl Debug for RunRerunFromResponse
Source§impl JsonSchema for RunRerunFromResponse
impl JsonSchema for RunRerunFromResponse
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for RunRerunFromResponse
impl RefUnwindSafe for RunRerunFromResponse
impl Send for RunRerunFromResponse
impl Sync for RunRerunFromResponse
impl Unpin for RunRerunFromResponse
impl UnsafeUnpin for RunRerunFromResponse
impl UnwindSafe for RunRerunFromResponse
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more