pub struct InputParams<'a, T> {
pub label: &'a ImStr,
pub step: Option<T>,
pub step_fast: Option<T>,
pub flags: Option<ImGuiInputTextFlags>,
pub size: Option<[f32; 2]>,
}
Fields§
§label: &'a ImStr
§step: Option<T>
§step_fast: Option<T>
§flags: Option<ImGuiInputTextFlags>
§size: Option<[f32; 2]>
Auto Trait Implementations§
impl<'a, T> Freeze for InputParams<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for InputParams<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for InputParams<'a, T>where
T: Send,
impl<'a, T> Sync for InputParams<'a, T>where
T: Sync,
impl<'a, T> Unpin for InputParams<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for InputParams<'a, T>where
T: UnwindSafe,
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