pub struct PipelineExecutionResult {
pub pipeline_name: String,
pub step_results: Vec<StepExecutionResult>,
pub overall_success: bool,
pub total_execution_time_ms: u64,
}
Expand description
流水线执行结果
Fields§
§pipeline_name: String
§step_results: Vec<StepExecutionResult>
§overall_success: bool
§total_execution_time_ms: u64
Trait Implementations§
Source§impl Clone for PipelineExecutionResult
impl Clone for PipelineExecutionResult
Source§fn clone(&self) -> PipelineExecutionResult
fn clone(&self) -> PipelineExecutionResult
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 PipelineExecutionResult
impl Debug for PipelineExecutionResult
Source§impl<'de> Deserialize<'de> for PipelineExecutionResult
impl<'de> Deserialize<'de> for PipelineExecutionResult
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
Auto Trait Implementations§
impl Freeze for PipelineExecutionResult
impl RefUnwindSafe for PipelineExecutionResult
impl Send for PipelineExecutionResult
impl Sync for PipelineExecutionResult
impl Unpin for PipelineExecutionResult
impl UnwindSafe for PipelineExecutionResult
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