pub struct ParsedOutput {
pub status: StepStatus,
pub fields: HashMap<String, Value>,
pub raw_output: String,
}Expand description
Parsed step output
Fields§
§status: StepStatusExecution status
fields: HashMap<String, Value>Parsed key-value pairs
raw_output: StringRaw output text (for debugging)
Trait Implementations§
Source§impl Clone for ParsedOutput
impl Clone for ParsedOutput
Source§fn clone(&self) -> ParsedOutput
fn clone(&self) -> ParsedOutput
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 ParsedOutput
impl RefUnwindSafe for ParsedOutput
impl Send for ParsedOutput
impl Sync for ParsedOutput
impl Unpin for ParsedOutput
impl UnsafeUnpin for ParsedOutput
impl UnwindSafe for ParsedOutput
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