pub struct IntField {
pub name: String,
pub value: i64,
pub min: Option<i64>,
pub max: Option<i64>,
pub step: i64,
}Expand description
An integer spinner field.
Fields§
§name: String§value: i64§min: Option<i64>§max: Option<i64>§step: i64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IntField
impl RefUnwindSafe for IntField
impl Send for IntField
impl Sync for IntField
impl Unpin for IntField
impl UnsafeUnpin for IntField
impl UnwindSafe for IntField
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