pub struct PropertyTypeCategory(/* private fields */);
Expand description
This enum specifies a category of QML property.
C++ enum: QQmlProperty::PropertyTypeCategory
.
This enum specifies a category of QML property.
Implementations§
Source§impl PropertyTypeCategory
impl PropertyTypeCategory
Sourcepub const InvalidCategory: PropertyTypeCategory
pub const InvalidCategory: PropertyTypeCategory
The property is invalid, or is a signal property. (C++ enum variant: InvalidCategory = 0
)
Sourcepub const List: PropertyTypeCategory
pub const List: PropertyTypeCategory
The property is a QQmlListProperty list property (C++ enum variant: List = 1
)
Sourcepub const Object: PropertyTypeCategory
pub const Object: PropertyTypeCategory
The property is a QObject derived type pointer (C++ enum variant: Object = 2
)
Sourcepub const Normal: PropertyTypeCategory
pub const Normal: PropertyTypeCategory
The property is a normal value property. (C++ enum variant: Normal = 3
)
Trait Implementations§
Source§impl Clone for PropertyTypeCategory
impl Clone for PropertyTypeCategory
Source§fn clone(&self) -> PropertyTypeCategory
fn clone(&self) -> PropertyTypeCategory
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 PropertyTypeCategory
impl Debug for PropertyTypeCategory
Source§impl From<PropertyTypeCategory> for c_int
impl From<PropertyTypeCategory> for c_int
Source§fn from(value: PropertyTypeCategory) -> Self
fn from(value: PropertyTypeCategory) -> Self
Converts to this type from the input type.
Source§impl From<i32> for PropertyTypeCategory
impl From<i32> for PropertyTypeCategory
Source§impl PartialEq for PropertyTypeCategory
impl PartialEq for PropertyTypeCategory
impl Copy for PropertyTypeCategory
impl Eq for PropertyTypeCategory
impl StructuralPartialEq for PropertyTypeCategory
Auto Trait Implementations§
impl Freeze for PropertyTypeCategory
impl RefUnwindSafe for PropertyTypeCategory
impl Send for PropertyTypeCategory
impl Sync for PropertyTypeCategory
impl Unpin for PropertyTypeCategory
impl UnwindSafe for PropertyTypeCategory
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