#[repr(i32)]pub enum QtButtonTypes {
QT_PUSH_BUTTON = 0,
QT_CHECKBOX = 1,
QT_RADIOBOX = 2,
QT_NEW_BUTTONBAR = 1_024,
}
Expand description
Qt “button” type
Variants§
QT_PUSH_BUTTON = 0
Push button.
QT_CHECKBOX = 1
Checkbox button.
QT_RADIOBOX = 2
Radiobox button.
QT_NEW_BUTTONBAR = 1_024
Button should create a new buttonbar
Trait Implementations§
Source§impl Clone for QtButtonTypes
impl Clone for QtButtonTypes
Source§fn clone(&self) -> QtButtonTypes
fn clone(&self) -> QtButtonTypes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for QtButtonTypes
impl Debug for QtButtonTypes
Source§impl From<QtButtonTypes> for i32
impl From<QtButtonTypes> for i32
Source§fn from(v: QtButtonTypes) -> Self
fn from(v: QtButtonTypes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for QtButtonTypes
impl PartialEq for QtButtonTypes
Source§impl TryFrom<i32> for QtButtonTypes
impl TryFrom<i32> for QtButtonTypes
impl Copy for QtButtonTypes
impl Eq for QtButtonTypes
impl StructuralPartialEq for QtButtonTypes
Auto Trait Implementations§
impl Freeze for QtButtonTypes
impl RefUnwindSafe for QtButtonTypes
impl Send for QtButtonTypes
impl Sync for QtButtonTypes
impl Unpin for QtButtonTypes
impl UnwindSafe for QtButtonTypes
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