pub struct ApplicationState(/* private fields */);Expand description
C++ enum: Qt::ApplicationState.
Implementations§
Source§impl ApplicationState
impl ApplicationState
Sourcepub const ApplicationSuspended: ApplicationState
pub const ApplicationSuspended: ApplicationState
C++ enum variant: ApplicationSuspended = 0
Sourcepub const ApplicationHidden: ApplicationState
pub const ApplicationHidden: ApplicationState
C++ enum variant: ApplicationHidden = 1
Sourcepub const ApplicationInactive: ApplicationState
pub const ApplicationInactive: ApplicationState
C++ enum variant: ApplicationInactive = 2
Sourcepub const ApplicationActive: ApplicationState
pub const ApplicationActive: ApplicationState
C++ enum variant: ApplicationActive = 4
Trait Implementations§
Source§impl Clone for ApplicationState
impl Clone for ApplicationState
Source§fn clone(&self) -> ApplicationState
fn clone(&self) -> ApplicationState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApplicationState
impl Debug for ApplicationState
Source§impl From<ApplicationState> for c_int
impl From<ApplicationState> for c_int
Source§fn from(value: ApplicationState) -> Self
fn from(value: ApplicationState) -> Self
Converts to this type from the input type.
Source§impl From<i32> for ApplicationState
impl From<i32> for ApplicationState
Source§impl PartialEq for ApplicationState
impl PartialEq for ApplicationState
Source§fn eq(&self, other: &ApplicationState) -> bool
fn eq(&self, other: &ApplicationState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ApplicationState
impl Eq for ApplicationState
impl StructuralPartialEq for ApplicationState
Auto Trait Implementations§
impl Freeze for ApplicationState
impl RefUnwindSafe for ApplicationState
impl Send for ApplicationState
impl Sync for ApplicationState
impl Unpin for ApplicationState
impl UnsafeUnpin for ApplicationState
impl UnwindSafe for ApplicationState
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