Struct egui::style::NumberFormatter
source · pub struct NumberFormatter(Arc<dyn Sync + Send + Fn(f64, RangeInclusive<usize>) -> String + 'static>);
Expand description
How to format numbers in e.g. a crate::DragValue
.
Tuple Fields§
§0: Arc<dyn Sync + Send + Fn(f64, RangeInclusive<usize>) -> String + 'static>
Implementations§
source§impl NumberFormatter
impl NumberFormatter
sourcepub fn new(
formatter: impl 'static + Sync + Send + Fn(f64, RangeInclusive<usize>) -> String,
) -> Self
pub fn new( formatter: impl 'static + Sync + Send + Fn(f64, RangeInclusive<usize>) -> String, ) -> Self
The first argument is the number to be formatted. The second argument is the range of the number of decimals to show.
See Self::format
for the meaning of the decimals
argument.
sourcepub fn format(&self, value: f64, decimals: RangeInclusive<usize>) -> String
pub fn format(&self, value: f64, decimals: RangeInclusive<usize>) -> String
Format the given number with the given number of decimals.
Decimals are counted after the decimal point.
The minimum number of decimals is usually automatically calculated
from the sensitivity of the crate::DragValue
and will usually be respected (e.g. include trailing zeroes),
but if the given value requires more decimals to represent accurately,
more decimals will be shown, up to the given max.
Trait Implementations§
source§impl Clone for NumberFormatter
impl Clone for NumberFormatter
source§fn clone(&self) -> NumberFormatter
fn clone(&self) -> NumberFormatter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NumberFormatter
impl Debug for NumberFormatter
source§impl PartialEq for NumberFormatter
impl PartialEq for NumberFormatter
Auto Trait Implementations§
impl Freeze for NumberFormatter
impl !RefUnwindSafe for NumberFormatter
impl Send for NumberFormatter
impl Sync for NumberFormatter
impl Unpin for NumberFormatter
impl !UnwindSafe for NumberFormatter
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)