pub trait EguiScale {
// Required method
fn scale(&mut self, scale: f32);
// Provided method
fn scaled(self, scale: f32) -> Self
where Self: Sized { ... }
}Expand description
A trait for scaling various types in the egui library.