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