pub struct Step {
pub kind: String,
pub key: String,
pub payload: Value,
}Expand description
One step in a trace.
Fields§
§kind: StringStep kind, e.g. tool_call, llm_response, error.
key: StringKey inside the kind (e.g. the tool name).
payload: ValuePayload to compare for equality.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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