Function egui::widgets::reset_button

source ·
pub fn reset_button<T: Default + PartialEq>(
    ui: &mut Ui,
    value: &mut T,
    text: &str,
)
Expand description

Show a button to reset a value to its default. The button is only enabled if the value does not already have its original value.

The text could be something like “Reset foo”.