pub enum StepOutcome {
Success {
output: Option<String>,
files_modified: Vec<String>,
exit_code: Option<i32>,
},
Failure {
error: String,
recoverable: bool,
exit_code: Option<i32>,
signals: Vec<String>,
},
Partial {
completed: String,
remaining: String,
exit_code: Option<i32>,
},
Skipped {
reason: String,
},
}Expand description
Outcome of an execution step.
Variants§
Success
Step completed successfully
Fields
Failure
Step failed with error
Fields
Partial
Step partially completed (may need retry)
Fields
Skipped
Step was skipped (e.g., already done)
Implementations§
Source§impl StepOutcome
impl StepOutcome
Sourcepub fn success(output: Option<String>, files_modified: Vec<String>) -> Self
pub fn success(output: Option<String>, files_modified: Vec<String>) -> Self
Create a Success outcome with default values.
Sourcepub fn failure(error: String, recoverable: bool) -> Self
pub fn failure(error: String, recoverable: bool) -> Self
Create a Failure outcome with default values.
Trait Implementations§
Source§impl Clone for StepOutcome
impl Clone for StepOutcome
Source§fn clone(&self) -> StepOutcome
fn clone(&self) -> StepOutcome
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 moreSource§impl Debug for StepOutcome
impl Debug for StepOutcome
Source§impl<'de> Deserialize<'de> for StepOutcome
impl<'de> Deserialize<'de> for StepOutcome
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 StepOutcome
impl PartialEq for StepOutcome
Source§impl Serialize for StepOutcome
impl Serialize for StepOutcome
impl Eq for StepOutcome
impl StructuralPartialEq for StepOutcome
Auto Trait Implementations§
impl Freeze for StepOutcome
impl RefUnwindSafe for StepOutcome
impl Send for StepOutcome
impl Sync for StepOutcome
impl Unpin for StepOutcome
impl UnwindSafe for StepOutcome
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§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