pub struct StepRun {
pub step_id: String,
pub attempt: u32,
pub skill: String,
pub runner: Option<String>,
pub fanout_group: Option<String>,
pub output: SkillOutput,
pub outputs: JsonObject,
pub receipt: Receipt,
pub admission_witness: StepAdmissionWitness,
}Fields§
§step_id: String§attempt: u32§skill: String§runner: Option<String>§fanout_group: Option<String>§output: SkillOutput§outputs: JsonObject§receipt: Receipt§admission_witness: StepAdmissionWitnessTrait Implementations§
Source§impl<'de> Deserialize<'de> for StepRun
impl<'de> Deserialize<'de> for StepRun
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 StepRun
impl RefUnwindSafe for StepRun
impl Send for StepRun
impl Sync for StepRun
impl Unpin for StepRun
impl UnsafeUnpin for StepRun
impl UnwindSafe for StepRun
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