Enum opencv::highgui::QtButtonTypes
source · #[repr(C)]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 copy 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§fn eq(&self, other: &QtButtonTypes) -> bool
fn eq(&self, other: &QtButtonTypes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for QtButtonTypes
impl Eq for QtButtonTypes
impl StructuralEq for QtButtonTypes
impl StructuralPartialEq for QtButtonTypes
Auto Trait Implementations§
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