pub struct MathOutput {
pub result: f64,
pub operation: String,
pub details: Option<String>,
}Expand description
Math tool output result.
Fields§
§result: f64Calculation result.
operation: StringOperation type.
details: Option<String>Additional details.
Trait Implementations§
Source§impl Debug for MathOutput
impl Debug for MathOutput
Auto Trait Implementations§
impl Freeze for MathOutput
impl RefUnwindSafe for MathOutput
impl Send for MathOutput
impl Sync for MathOutput
impl Unpin for MathOutput
impl UnsafeUnpin for MathOutput
impl UnwindSafe for MathOutput
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