pub struct HostExecManyOutcome {
pub results: Vec<HostExecTargetResult>,
pub succeeded: usize,
pub failed: usize,
pub cancelled: usize,
pub timed_out: usize,
pub send_state: MutationSendState,
}Expand description
Complete stable-order host execution fanout outcome.
Fields§
§results: Vec<HostExecTargetResult>Per-target results in normalized request order.
succeeded: usizeSuccessful target count.
failed: usizeFailed target count, including nonzero exits.
cancelled: usizeCancelled target count.
timed_out: usizeTimed-out target count.
send_state: MutationSendStateAggregate conservative send state.
Implementations§
Source§impl HostExecManyOutcome
impl HostExecManyOutcome
Sourcepub fn all_succeeded(&self) -> bool
pub fn all_succeeded(&self) -> bool
Returns whether every target completed with exit code zero.
Trait Implementations§
Source§impl Clone for HostExecManyOutcome
impl Clone for HostExecManyOutcome
Source§fn clone(&self) -> HostExecManyOutcome
fn clone(&self) -> HostExecManyOutcome
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 HostExecManyOutcome
impl Debug for HostExecManyOutcome
Source§impl<'de> Deserialize<'de> for HostExecManyOutcome
impl<'de> Deserialize<'de> for HostExecManyOutcome
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
Source§impl PartialEq for HostExecManyOutcome
impl PartialEq for HostExecManyOutcome
Source§fn eq(&self, other: &HostExecManyOutcome) -> bool
fn eq(&self, other: &HostExecManyOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HostExecManyOutcome
impl Serialize for HostExecManyOutcome
impl Eq for HostExecManyOutcome
impl StructuralPartialEq for HostExecManyOutcome
Auto Trait Implementations§
impl Freeze for HostExecManyOutcome
impl RefUnwindSafe for HostExecManyOutcome
impl Send for HostExecManyOutcome
impl Sync for HostExecManyOutcome
impl Unpin for HostExecManyOutcome
impl UnsafeUnpin for HostExecManyOutcome
impl UnwindSafe for HostExecManyOutcome
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.