pub struct QueryControlFlagBits(/* private fields */);Expand description
Implementations§
Source§impl QueryControlFlagBits
impl QueryControlFlagBits
Sourcepub const PRECISE: QueryControlFlagBits
pub const PRECISE: QueryControlFlagBits
Bit 0.
pub const fn empty() -> QueryControlFlagBits
pub const fn from_raw(value: u32) -> QueryControlFlagBits
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn contains(self, other: QueryControlFlagBits) -> bool
pub const fn all() -> QueryControlFlagBits
Trait Implementations§
Source§impl BitAnd for QueryControlFlagBits
impl BitAnd for QueryControlFlagBits
Source§type Output = QueryControlFlagBits
type Output = QueryControlFlagBits
The resulting type after applying the
& operator.Source§fn bitand(self, rhs: QueryControlFlagBits) -> QueryControlFlagBits
fn bitand(self, rhs: QueryControlFlagBits) -> QueryControlFlagBits
Performs the
& operation. Read moreSource§impl BitAndAssign for QueryControlFlagBits
impl BitAndAssign for QueryControlFlagBits
Source§fn bitand_assign(&mut self, rhs: QueryControlFlagBits)
fn bitand_assign(&mut self, rhs: QueryControlFlagBits)
Performs the
&= operation. Read moreSource§impl BitOr for QueryControlFlagBits
impl BitOr for QueryControlFlagBits
Source§type Output = QueryControlFlagBits
type Output = QueryControlFlagBits
The resulting type after applying the
| operator.Source§fn bitor(self, rhs: QueryControlFlagBits) -> QueryControlFlagBits
fn bitor(self, rhs: QueryControlFlagBits) -> QueryControlFlagBits
Performs the
| operation. Read moreSource§impl BitOrAssign for QueryControlFlagBits
impl BitOrAssign for QueryControlFlagBits
Source§fn bitor_assign(&mut self, rhs: QueryControlFlagBits)
fn bitor_assign(&mut self, rhs: QueryControlFlagBits)
Performs the
|= operation. Read moreSource§impl BitXor for QueryControlFlagBits
impl BitXor for QueryControlFlagBits
Source§type Output = QueryControlFlagBits
type Output = QueryControlFlagBits
The resulting type after applying the
^ operator.Source§fn bitxor(self, rhs: QueryControlFlagBits) -> QueryControlFlagBits
fn bitxor(self, rhs: QueryControlFlagBits) -> QueryControlFlagBits
Performs the
^ operation. Read moreSource§impl BitXorAssign for QueryControlFlagBits
impl BitXorAssign for QueryControlFlagBits
Source§fn bitxor_assign(&mut self, rhs: QueryControlFlagBits)
fn bitxor_assign(&mut self, rhs: QueryControlFlagBits)
Performs the
^= operation. Read moreSource§impl Clone for QueryControlFlagBits
impl Clone for QueryControlFlagBits
Source§fn clone(&self) -> QueryControlFlagBits
fn clone(&self) -> QueryControlFlagBits
Returns a duplicate of the value. Read more
1.0.0 · 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 QueryControlFlagBits
impl Debug for QueryControlFlagBits
Source§impl Default for QueryControlFlagBits
impl Default for QueryControlFlagBits
Source§fn default() -> QueryControlFlagBits
fn default() -> QueryControlFlagBits
Returns the “default value” for a type. Read more
Source§impl Hash for QueryControlFlagBits
impl Hash for QueryControlFlagBits
Source§impl Not for QueryControlFlagBits
impl Not for QueryControlFlagBits
Source§type Output = QueryControlFlagBits
type Output = QueryControlFlagBits
The resulting type after applying the
! operator.Source§fn not(self) -> QueryControlFlagBits
fn not(self) -> QueryControlFlagBits
Performs the unary
! operation. Read moreSource§impl Ord for QueryControlFlagBits
impl Ord for QueryControlFlagBits
Source§fn cmp(&self, other: &QueryControlFlagBits) -> Ordering
fn cmp(&self, other: &QueryControlFlagBits) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for QueryControlFlagBits
impl PartialEq for QueryControlFlagBits
Source§impl PartialOrd for QueryControlFlagBits
impl PartialOrd for QueryControlFlagBits
impl Copy for QueryControlFlagBits
impl Eq for QueryControlFlagBits
impl StructuralPartialEq for QueryControlFlagBits
Auto Trait Implementations§
impl Freeze for QueryControlFlagBits
impl RefUnwindSafe for QueryControlFlagBits
impl Send for QueryControlFlagBits
impl Sync for QueryControlFlagBits
impl Unpin for QueryControlFlagBits
impl UnsafeUnpin for QueryControlFlagBits
impl UnwindSafe for QueryControlFlagBits
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