[][src]Struct imgui::VerticalSlider

#[must_use]
pub struct VerticalSlider<'a, T: DataTypeKind + Copy> { /* fields omitted */ }

Builder for a vertical slider widget.

Methods

impl<'a, T: DataTypeKind> VerticalSlider<'a, T>[src]

pub fn new(
    label: &ImStr,
    size: [f32; 2],
    range: RangeInclusive<T>
) -> VerticalSlider<T>
[src]

Constructs a new vertical slider builder with the given size and range.

pub fn display_format(self, display_format: &'a ImStr) -> Self[src]

Sets the display format using a C-style printf string

pub fn power(self, power: f32) -> Self[src]

Sets the power (exponent) of the slider values

pub fn build(self, _: &Ui, value: &mut T) -> bool[src]

Builds a vertical slider that is bound to the given value.

Returns true if the slider value was changed.

Trait Implementations

impl<'a, T: Clone + DataTypeKind + Copy> Clone for VerticalSlider<'a, T>[src]

impl<'a, T: Debug + DataTypeKind + Copy> Debug for VerticalSlider<'a, T>[src]

Auto Trait Implementations

impl<'a, T> Unpin for VerticalSlider<'a, T> where
    T: Unpin

impl<'a, T> Sync for VerticalSlider<'a, T> where
    T: Sync

impl<'a, T> Send for VerticalSlider<'a, T> where
    T: Send

impl<'a, T> UnwindSafe for VerticalSlider<'a, T> where
    T: UnwindSafe

impl<'a, T> RefUnwindSafe for VerticalSlider<'a, T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]