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