pub trait ProgressReporter: WasmCompatSend + WasmCompatSync {
// Required method
fn report(&self, progress: f64, total: Option<f64>, message: Option<&str>);
}Expand description
Reports progress for long-running tool operations.
pub trait ProgressReporter: WasmCompatSend + WasmCompatSync {
// Required method
fn report(&self, progress: f64, total: Option<f64>, message: Option<&str>);
}Reports progress for long-running tool operations.