pub struct OutcomeDescription {
pub success_with_output: Option<String>,
pub success_with_files: Option<String>,
pub success_plain: String,
pub failure_recoverable: Option<String>,
pub failure_fatal: Option<String>,
pub partial: Option<String>,
pub skipped: Option<String>,
}Fields§
§success_with_output: Option<String>§success_with_files: Option<String>§success_plain: String§failure_recoverable: Option<String>§failure_fatal: Option<String>§partial: Option<String>§skipped: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for OutcomeDescription
impl Clone for OutcomeDescription
Source§fn clone(&self) -> OutcomeDescription
fn clone(&self) -> OutcomeDescription
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for OutcomeDescription
impl RefUnwindSafe for OutcomeDescription
impl Send for OutcomeDescription
impl Sync for OutcomeDescription
impl Unpin for OutcomeDescription
impl UnsafeUnpin for OutcomeDescription
impl UnwindSafe for OutcomeDescription
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<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