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