[][src]Struct imgui::DragFloatRange2

#[must_use]
pub struct DragFloatRange2<'ui, 'p> { /* fields omitted */ }

Methods

impl<'ui, 'p> DragFloatRange2<'ui, 'p>[src]

pub fn new(
    _: &Ui<'ui>,
    label: &'p ImStr,
    current_min: &'p mut f32,
    current_max: &'p mut f32
) -> Self
[src]

pub fn build(self) -> bool[src]

pub fn display_format_max(self, display_format: Option<&'p ImStr>) -> Self[src]

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

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

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

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

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

Auto Trait Implementations

impl<'ui, 'p> Send for DragFloatRange2<'ui, 'p>

impl<'ui, 'p> Sync for DragFloatRange2<'ui, 'p>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.