pub struct RunResurrectOptions {
pub build: Option<String>,
pub memory_mbytes: Option<i64>,
pub timeout_secs: Option<i64>,
pub max_items: Option<i64>,
pub max_total_charge_usd: Option<f64>,
pub restart_on_error: Option<bool>,
}Expand description
Options for resurrecting a finished run.
Fields§
§build: Option<String>Build tag/number to use; defaults to the original run’s build.
memory_mbytes: Option<i64>Memory in megabytes.
timeout_secs: Option<i64>Timeout in seconds.
max_items: Option<i64>Maximum number of dataset items to charge (pay-per-result Actors).
max_total_charge_usd: Option<f64>Maximum total charge in USD (pay-per-event Actors).
restart_on_error: Option<bool>If true, restart the run automatically when it fails.
Trait Implementations§
Source§impl Clone for RunResurrectOptions
impl Clone for RunResurrectOptions
Source§fn clone(&self) -> RunResurrectOptions
fn clone(&self) -> RunResurrectOptions
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 RunResurrectOptions
impl Debug for RunResurrectOptions
Source§impl Default for RunResurrectOptions
impl Default for RunResurrectOptions
Source§fn default() -> RunResurrectOptions
fn default() -> RunResurrectOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RunResurrectOptions
impl RefUnwindSafe for RunResurrectOptions
impl Send for RunResurrectOptions
impl Sync for RunResurrectOptions
impl Unpin for RunResurrectOptions
impl UnsafeUnpin for RunResurrectOptions
impl UnwindSafe for RunResurrectOptions
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