pub struct InputInt3<'ui, 'p, L, T> { /* private fields */ }
Implementations§
Source§impl<'ui, 'p, L, T> InputInt3<'ui, 'p, L, T>
impl<'ui, 'p, L, T> InputInt3<'ui, 'p, L, T>
pub fn new(ui: &'ui Ui, label: L, value: &'p mut T) -> InputInt3<'ui, 'p, L, T>
pub fn build(self) -> bool
pub fn flags(self, flags: InputTextFlags) -> InputInt3<'ui, 'p, L, T>
pub fn chars_decimal(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn chars_hexadecimal(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn chars_uppercase(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn chars_noblank(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn auto_select_all(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn enter_returns_true(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn allow_tab_input(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn no_horizontal_scroll(self, value: bool) -> InputInt3<'ui, 'p, L, T>
Sourcepub fn always_insert_mode(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn always_insert_mode(self, value: bool) -> InputInt3<'ui, 'p, L, T>
Note: this is equivalent to always_overwrite
pub fn always_overwrite(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn read_only(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn password(self, value: bool) -> InputInt3<'ui, 'p, L, T>
pub fn no_undo_redo(self, value: bool) -> InputInt3<'ui, 'p, L, T>
Auto Trait Implementations§
impl<'ui, 'p, L, T> Freeze for InputInt3<'ui, 'p, L, T>where
L: Freeze,
impl<'ui, 'p, L, T> !RefUnwindSafe for InputInt3<'ui, 'p, L, T>
impl<'ui, 'p, L, T> !Send for InputInt3<'ui, 'p, L, T>
impl<'ui, 'p, L, T> !Sync for InputInt3<'ui, 'p, L, T>
impl<'ui, 'p, L, T> Unpin for InputInt3<'ui, 'p, L, T>where
L: Unpin,
impl<'ui, 'p, L, T> !UnwindSafe for InputInt3<'ui, 'p, L, T>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more