pub struct RunRow {
pub run_id: i64,
pub name: String,
pub agent_instance_hierarchy: String,
pub version: i64,
pub command: Vec<String>,
pub agent_arguments: AgentArguments,
pub plugin: Option<PluginPath>,
}Expand description
Subset of a schedule row that agents tasks run needs to fire one
task, plus the id of the tasks_runs row the claim minted for this
firing (the log writer links every emitted item to it).
Fields§
§run_id: i64§name: String§agent_instance_hierarchy: String§version: i64§command: Vec<String>§agent_arguments: AgentArguments§plugin: Option<PluginPath>The plugin that registered this schedule, if any — re-installed on the run ctx so the task fires on behalf of that plugin.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunRow
impl RefUnwindSafe for RunRow
impl Send for RunRow
impl Sync for RunRow
impl Unpin for RunRow
impl UnsafeUnpin for RunRow
impl UnwindSafe for RunRow
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
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