[−][src]Struct imgui::VerticalSlider
Builder for a vertical slider widget.
Implementations
impl<'a, T: DataTypeKind> VerticalSlider<'a, T>[src]
pub fn new(label: &ImStr, size: [f32; 2]) -> VerticalSlider<'_, T>[src]
Constructs a new vertical slider builder with the given size and range.
pub fn range<R: InclusiveRangeBounds<T>>(self, range: R) -> Self[src]
Sets the range (inclusive)
pub fn display_format(self, display_format: &'a ImStr) -> Self[src]
Sets the display format using a C-style printf string
pub fn flags(self, flags: SliderFlags) -> Self[src]
Replaces all current settings with the given flags
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]
pub fn clone(&self) -> VerticalSlider<'a, T>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a, T: Debug + DataTypeKind + Copy> Debug for VerticalSlider<'a, T>[src]
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for VerticalSlider<'a, T> where
T: RefUnwindSafe, [src]
T: RefUnwindSafe,
impl<'a, T> Send for VerticalSlider<'a, T> where
T: Send, [src]
T: Send,
impl<'a, T> Sync for VerticalSlider<'a, T> where
T: Sync, [src]
T: Sync,
impl<'a, T> Unpin for VerticalSlider<'a, T> where
T: Unpin, [src]
T: Unpin,
impl<'a, T> UnwindSafe for VerticalSlider<'a, T> where
T: UnwindSafe, [src]
T: UnwindSafe,
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,
pub 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> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
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.
pub 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>,