pub struct StepResult {
pub tool: String,
pub success: bool,
pub output: Option<Value>,
pub error: Option<String>,
}Fields§
§tool: String§success: bool§output: Option<Value>§error: Option<String>Trait Implementations§
Source§impl Debug for StepResult
impl Debug for StepResult
Auto Trait Implementations§
impl Freeze for StepResult
impl RefUnwindSafe for StepResult
impl Send for StepResult
impl Sync for StepResult
impl Unpin for StepResult
impl UnwindSafe for StepResult
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