pub struct DragParams<'a, T> {
pub label: &'a ImStr,
pub format: Option<&'a ImStr>,
pub min: Option<T>,
pub max: Option<T>,
pub speed: Option<f32>,
pub power: Option<f32>,
}
Fields§
§label: &'a ImStr
§format: Option<&'a ImStr>
§min: Option<T>
§max: Option<T>
§speed: Option<f32>
§power: Option<f32>
Auto Trait Implementations§
impl<'a, T> Freeze for DragParams<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for DragParams<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for DragParams<'a, T>where
T: Send,
impl<'a, T> Sync for DragParams<'a, T>where
T: Sync,
impl<'a, T> Unpin for DragParams<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for DragParams<'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