[][src]Struct qt_widgets::q_style_option_menu_item::CheckType

#[repr(transparent)]
pub struct CheckType(_);

This enum is used to indicate whether or not a check mark should be drawn for the item, or even if it should be drawn at all.

C++ enum: QStyleOptionMenuItem::CheckType.

C++ documentation:

This enum is used to indicate whether or not a check mark should be drawn for the item, or even if it should be drawn at all.

See also checkType, QAction::checkable, QAction::checked, and QActionGroup::exclusive.

Methods

impl CheckType[src]

pub fn to_int(&self) -> c_int[src]

impl CheckType[src]

pub const NotCheckable: CheckType[src]

The item is not checkable. (C++ enum variant: NotCheckable = 0)

pub const Exclusive: CheckType[src]

The item is an exclusive check item (like a radio button). (C++ enum variant: Exclusive = 1)

pub const NonExclusive: CheckType[src]

The item is a non-exclusive check item (like a check box). (C++ enum variant: NonExclusive = 2)

Trait Implementations

impl Eq for CheckType[src]

impl Clone for CheckType[src]

impl PartialEq<CheckType> for CheckType[src]

impl From<i32> for CheckType[src]

impl From<CheckType> for c_int[src]

impl Copy for CheckType[src]

impl Debug for CheckType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]