pub struct Status(/* private fields */);
Expand description
Specifies the loading status of the QQmlComponent.
C++ enum: QQmlComponent::Status
.
Specifies the loading status of the QQmlComponent.
Implementations§
Source§impl Status
impl Status
Sourcepub const Null: Status
pub const Null: Status
This QQmlComponent has no data. Call loadUrl() or setData() to add QML content. (C++ enum variant: Null = 0
)
Sourcepub const Ready: Status
pub const Ready: Status
This QQmlComponent is ready and create() may be called. (C++ enum variant: Ready = 1
)
Sourcepub const Loading: Status
pub const Loading: Status
This QQmlComponent is loading network data. (C++ enum variant: Loading = 2
)
Trait Implementations§
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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