pub trait EguiProbe {
// Required method
fn probe(&mut self, ui: &mut Ui, style: &Style) -> Response;
// Provided method
fn iterate_inner(
&mut self,
ui: &mut Ui,
f: &mut dyn FnMut(&str, &mut Ui, &mut dyn EguiProbe),
) { ... }
}
Expand description
Provides ability to show probbing UI to values.