[−][src]Struct egui::widgets::DragValue
A floating point value that you can change by dragging the number. More compact than a slider.
Implementations
impl<'a> DragValue<'a>[src]
pub fn f32(value: &'a mut f32) -> Self[src]
pub fn u8(value: &'a mut u8) -> Self[src]
pub fn i32(value: &'a mut i32) -> Self[src]
pub fn speed(self, speed: f32) -> Self[src]
How much the value changes when dragged one point (logical pixel).
pub fn range(self, range: RangeInclusive<f64>) -> Self[src]
Clamp the value to this range
pub fn prefix(self, prefix: impl ToString) -> Self[src]
Show a prefix before the number, e.g. "x: "
pub fn suffix(self, suffix: impl ToString) -> Self[src]
Add a suffix to the number, this can be e.g. a unit ("°" or " m")
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for DragValue<'a>
impl<'a> !Send for DragValue<'a>
impl<'a> !Sync for DragValue<'a>
impl<'a> Unpin for DragValue<'a>
impl<'a> !UnwindSafe for DragValue<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,