pub struct ReplicateSettings { /* private fields */ }Expand description
Validated policy for executing one or more isolated study replicates.
Implementations§
Source§impl ReplicateSettings
impl ReplicateSettings
Sourcepub const fn replicates(self) -> u64
pub const fn replicates(self) -> u64
Returns the positive number of replicate subprocesses.
Sourcepub const fn scheduling(self) -> ReplicateScheduling
pub const fn scheduling(self) -> ReplicateScheduling
Returns whether replicate subprocesses are scheduled sequentially or in parallel.
Sourcepub const fn failure_policy(self) -> ReplicateFailurePolicy
pub const fn failure_policy(self) -> ReplicateFailurePolicy
Returns the controller response to a failed replicate subprocess.
Trait Implementations§
Source§impl Clone for ReplicateSettings
impl Clone for ReplicateSettings
Source§fn clone(&self) -> ReplicateSettings
fn clone(&self) -> ReplicateSettings
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 moreimpl Copy for ReplicateSettings
Source§impl Debug for ReplicateSettings
impl Debug for ReplicateSettings
impl Eq for ReplicateSettings
Source§impl PartialEq for ReplicateSettings
impl PartialEq for ReplicateSettings
impl StructuralPartialEq for ReplicateSettings
Auto Trait Implementations§
impl Freeze for ReplicateSettings
impl RefUnwindSafe for ReplicateSettings
impl Send for ReplicateSettings
impl Sync for ReplicateSettings
impl Unpin for ReplicateSettings
impl UnsafeUnpin for ReplicateSettings
impl UnwindSafe for ReplicateSettings
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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