pub struct InputFloat4<'ui, 'p, L, F = &'static str> { /* private fields */ }Expand description
Builder for a 4-component float input widget.
Implementations§
Source§impl<'ui, 'p, L: AsRef<str>> InputFloat4<'ui, 'p, L>
impl<'ui, 'p, L: AsRef<str>> InputFloat4<'ui, 'p, L>
Source§impl<'ui, 'p, L: AsRef<str>, F: AsRef<str>> InputFloat4<'ui, 'p, L, F>
impl<'ui, 'p, L: AsRef<str>, F: AsRef<str>> InputFloat4<'ui, 'p, L, F>
Sourcepub fn display_format<F2: AsRef<str>>(
self,
display_format: F2,
) -> InputFloat4<'ui, 'p, L, F2>
pub fn display_format<F2: AsRef<str>>( self, display_format: F2, ) -> InputFloat4<'ui, 'p, L, F2>
Sets the display format using a C-style printf string
Sourcepub fn flags(self, flags: InputTextFlags) -> Self
pub fn flags(self, flags: InputTextFlags) -> Self
Sets the input text flags
Auto Trait Implementations§
impl<'ui, 'p, L, F> Freeze for InputFloat4<'ui, 'p, L, F>
impl<'ui, 'p, L, F = &'static str> !RefUnwindSafe for InputFloat4<'ui, 'p, L, F>
impl<'ui, 'p, L, F = &'static str> !Send for InputFloat4<'ui, 'p, L, F>
impl<'ui, 'p, L, F = &'static str> !Sync for InputFloat4<'ui, 'p, L, F>
impl<'ui, 'p, L, F> Unpin for InputFloat4<'ui, 'p, L, F>
impl<'ui, 'p, L, F = &'static str> !UnwindSafe for InputFloat4<'ui, 'p, L, F>
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