[][src]Struct qt_qml::q_qml_property::PropertyTypeCategory

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

This enum specifies a category of QML property.

C++ enum: QQmlProperty::PropertyTypeCategory.

C++ documentation:

This enum specifies a category of QML property.

Methods

impl PropertyTypeCategory[src]

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

impl PropertyTypeCategory[src]

pub const InvalidCategory: PropertyTypeCategory[src]

The property is invalid, or is a signal property. (C++ enum variant: InvalidCategory = 0)

pub const List: PropertyTypeCategory[src]

The property is a QQmlListProperty list property (C++ enum variant: List = 1)

pub const Object: PropertyTypeCategory[src]

The property is a QObject derived type pointer (C++ enum variant: Object = 2)

pub const Normal: PropertyTypeCategory[src]

The property is a normal value property. (C++ enum variant: Normal = 3)

Trait Implementations

impl Clone for PropertyTypeCategory[src]

impl Copy for PropertyTypeCategory[src]

impl Debug for PropertyTypeCategory[src]

impl Eq for PropertyTypeCategory[src]

impl From<PropertyTypeCategory> for c_int[src]

impl From<i32> for PropertyTypeCategory[src]

impl PartialEq<PropertyTypeCategory> for PropertyTypeCategory[src]

impl StructuralEq for PropertyTypeCategory[src]

impl StructuralPartialEq for PropertyTypeCategory[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.