pub struct ActorRun {Show 14 fields
pub id: String,
pub act_id: Option<String>,
pub actor_task_id: Option<String>,
pub user_id: Option<String>,
pub status: Option<String>,
pub status_message: Option<String>,
pub started_at: Option<DateTime<Utc>>,
pub finished_at: Option<DateTime<Utc>>,
pub build_id: Option<String>,
pub default_dataset_id: Option<String>,
pub default_key_value_store_id: Option<String>,
pub default_request_queue_id: Option<String>,
pub container_url: Option<String>,
pub extra: Extra,
}Expand description
A single execution of an Actor (an Actor run).
Fields§
§id: StringUnique run ID.
act_id: Option<String>ID of the Actor that produced this run.
actor_task_id: Option<String>ID of the task that started this run, if any.
user_id: Option<String>ID of the user who owns the run.
status: Option<String>Current run status, e.g. READY, RUNNING, SUCCEEDED, FAILED, ABORTED, TIMED-OUT.
status_message: Option<String>Optional human-readable status message.
started_at: Option<DateTime<Utc>>When the run started.
finished_at: Option<DateTime<Utc>>When the run finished (absent while still running).
build_id: Option<String>ID of the build used for the run.
default_dataset_id: Option<String>Default dataset ID associated with the run.
default_key_value_store_id: Option<String>Default key-value store ID associated with the run.
default_request_queue_id: Option<String>Default request queue ID associated with the run.
container_url: Option<String>URL of the run’s container, if running.
extra: ExtraAny other fields returned by the API.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ActorRun
impl<'de> Deserialize<'de> for ActorRun
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ActorRun
impl RefUnwindSafe for ActorRun
impl Send for ActorRun
impl Sync for ActorRun
impl Unpin for ActorRun
impl UnsafeUnpin for ActorRun
impl UnwindSafe for ActorRun
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