Struct maelstrom_base::JobEffects
source · pub struct JobEffects {
pub stdout: JobOutputResult,
pub stderr: JobOutputResult,
}Expand description
The output of a job that ran for some amount of time. This is generated regardless of how the job terminated. From our point of view, it doesn’t matter. We ran the job until it was terminated, and gathered its output.
Fields§
§stdout: JobOutputResult§stderr: JobOutputResultTrait Implementations§
source§impl Clone for JobEffects
impl Clone for JobEffects
source§fn clone(&self) -> JobEffects
fn clone(&self) -> JobEffects
Returns a copy of the value. Read more
1.0.0 · 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 JobEffects
impl Debug for JobEffects
source§impl<'de> Deserialize<'de> for JobEffects
impl<'de> Deserialize<'de> for JobEffects
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 Ord for JobEffects
impl Ord for JobEffects
source§fn cmp(&self, other: &JobEffects) -> Ordering
fn cmp(&self, other: &JobEffects) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for JobEffects
impl PartialEq for JobEffects
source§fn eq(&self, other: &JobEffects) -> bool
fn eq(&self, other: &JobEffects) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for JobEffects
impl PartialOrd for JobEffects
source§fn partial_cmp(&self, other: &JobEffects) -> Option<Ordering>
fn partial_cmp(&self, other: &JobEffects) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl Serialize for JobEffects
impl Serialize for JobEffects
impl Eq for JobEffects
impl StructuralPartialEq for JobEffects
Auto Trait Implementations§
impl Freeze for JobEffects
impl RefUnwindSafe for JobEffects
impl Send for JobEffects
impl Sync for JobEffects
impl Unpin for JobEffects
impl UnwindSafe for JobEffects
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