pub struct ComboBoxFlags { /* private fields */ }
Expand description
Flags for combo boxes
Implementations§
Source§impl ComboBoxFlags
impl ComboBoxFlags
Sourcepub const POPUP_ALIGN_LEFT: ComboBoxFlags
pub const POPUP_ALIGN_LEFT: ComboBoxFlags
Align the popup toward the left by default
Sourcepub const HEIGHT_SMALL: ComboBoxFlags
pub const HEIGHT_SMALL: ComboBoxFlags
Max ~4 items visible.
Sourcepub const HEIGHT_REGULAR: ComboBoxFlags
pub const HEIGHT_REGULAR: ComboBoxFlags
Max ~8 items visible (default)
Sourcepub const HEIGHT_LARGE: ComboBoxFlags
pub const HEIGHT_LARGE: ComboBoxFlags
Max ~20 items visible
Sourcepub const HEIGHT_LARGEST: ComboBoxFlags
pub const HEIGHT_LARGEST: ComboBoxFlags
As many fitting items as possible
Sourcepub const NO_ARROW_BUTTON: ComboBoxFlags
pub const NO_ARROW_BUTTON: ComboBoxFlags
Display on the preview box without the square arrow button
Sourcepub const NO_PREVIEW: ComboBoxFlags
pub const NO_PREVIEW: ComboBoxFlags
Display only a square arrow button
Sourcepub const fn empty() -> ComboBoxFlags
pub const fn empty() -> ComboBoxFlags
Returns an empty set of flags.
Sourcepub const fn all() -> ComboBoxFlags
pub const fn all() -> ComboBoxFlags
Returns the set containing all flags.
Sourcepub const fn from_bits(bits: u32) -> Option<ComboBoxFlags>
pub const fn from_bits(bits: u32) -> Option<ComboBoxFlags>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
Sourcepub const fn from_bits_truncate(bits: u32) -> ComboBoxFlags
pub const fn from_bits_truncate(bits: u32) -> ComboBoxFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
Sourcepub const unsafe fn from_bits_unchecked(bits: u32) -> ComboBoxFlags
pub const unsafe fn from_bits_unchecked(bits: u32) -> ComboBoxFlags
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
§Safety
The caller of the bitflags!
macro can chose to allow or
disallow extra bits for their bitflags type.
The caller of from_bits_unchecked()
has to ensure that
all bits correspond to a defined flag or that extra bits
are valid for this bitflags type.
Sourcepub const fn intersects(&self, other: ComboBoxFlags) -> bool
pub const fn intersects(&self, other: ComboBoxFlags) -> bool
Returns true
if there are flags common to both self
and other
.
Sourcepub const fn contains(&self, other: ComboBoxFlags) -> bool
pub const fn contains(&self, other: ComboBoxFlags) -> bool
Returns true
if all of the flags in other
are contained within self
.
Sourcepub fn insert(&mut self, other: ComboBoxFlags)
pub fn insert(&mut self, other: ComboBoxFlags)
Inserts the specified flags in-place.
Sourcepub fn remove(&mut self, other: ComboBoxFlags)
pub fn remove(&mut self, other: ComboBoxFlags)
Removes the specified flags in-place.
Sourcepub fn toggle(&mut self, other: ComboBoxFlags)
pub fn toggle(&mut self, other: ComboBoxFlags)
Toggles the specified flags in-place.
Sourcepub fn set(&mut self, other: ComboBoxFlags, value: bool)
pub fn set(&mut self, other: ComboBoxFlags, value: bool)
Inserts or removes the specified flags depending on the passed value.
Sourcepub const fn intersection(self, other: ComboBoxFlags) -> ComboBoxFlags
pub const fn intersection(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the intersection between the flags in self
and
other
.
Specifically, the returned set contains only the flags which are
present in both self
and other
.
This is equivalent to using the &
operator (e.g.
ops::BitAnd
), as in flags & other
.
Sourcepub const fn union(self, other: ComboBoxFlags) -> ComboBoxFlags
pub const fn union(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the union of between the flags in self
and other
.
Specifically, the returned set contains all flags which are
present in either self
or other
, including any which are
present in both (see Self::symmetric_difference
if that
is undesirable).
This is equivalent to using the |
operator (e.g.
ops::BitOr
), as in flags | other
.
Sourcepub const fn difference(self, other: ComboBoxFlags) -> ComboBoxFlags
pub const fn difference(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the difference between the flags in self
and other
.
Specifically, the returned set contains all flags present in
self
, except for the ones present in other
.
It is also conceptually equivalent to the “bit-clear” operation:
flags & !other
(and this syntax is also supported).
This is equivalent to using the -
operator (e.g.
ops::Sub
), as in flags - other
.
Sourcepub const fn symmetric_difference(self, other: ComboBoxFlags) -> ComboBoxFlags
pub const fn symmetric_difference(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the symmetric difference between the flags
in self
and other
.
Specifically, the returned set contains the flags present which
are present in self
or other
, but that are not present in
both. Equivalently, it contains the flags present in exactly
one of the sets self
and other
.
This is equivalent to using the ^
operator (e.g.
ops::BitXor
), as in flags ^ other
.
Sourcepub const fn complement(self) -> ComboBoxFlags
pub const fn complement(self) -> ComboBoxFlags
Returns the complement of this set of flags.
Specifically, the returned set contains all the flags which are
not set in self
, but which are allowed for this type.
Alternatively, it can be thought of as the set difference
between Self::all()
and self
(e.g. Self::all() - self
)
This is equivalent to using the !
operator (e.g.
ops::Not
), as in !flags
.
Trait Implementations§
Source§impl Binary for ComboBoxFlags
impl Binary for ComboBoxFlags
Source§impl BitAnd for ComboBoxFlags
impl BitAnd for ComboBoxFlags
Source§fn bitand(self, other: ComboBoxFlags) -> ComboBoxFlags
fn bitand(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the intersection between the two sets of flags.
Source§type Output = ComboBoxFlags
type Output = ComboBoxFlags
&
operator.Source§impl BitAndAssign for ComboBoxFlags
impl BitAndAssign for ComboBoxFlags
Source§fn bitand_assign(&mut self, other: ComboBoxFlags)
fn bitand_assign(&mut self, other: ComboBoxFlags)
Disables all flags disabled in the set.
Source§impl BitOr for ComboBoxFlags
impl BitOr for ComboBoxFlags
Source§fn bitor(self, other: ComboBoxFlags) -> ComboBoxFlags
fn bitor(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the union of the two sets of flags.
Source§type Output = ComboBoxFlags
type Output = ComboBoxFlags
|
operator.Source§impl BitOrAssign for ComboBoxFlags
impl BitOrAssign for ComboBoxFlags
Source§fn bitor_assign(&mut self, other: ComboBoxFlags)
fn bitor_assign(&mut self, other: ComboBoxFlags)
Adds the set of flags.
Source§impl BitXor for ComboBoxFlags
impl BitXor for ComboBoxFlags
Source§fn bitxor(self, other: ComboBoxFlags) -> ComboBoxFlags
fn bitxor(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the left flags, but with all the right flags toggled.
Source§type Output = ComboBoxFlags
type Output = ComboBoxFlags
^
operator.Source§impl BitXorAssign for ComboBoxFlags
impl BitXorAssign for ComboBoxFlags
Source§fn bitxor_assign(&mut self, other: ComboBoxFlags)
fn bitxor_assign(&mut self, other: ComboBoxFlags)
Toggles the set of flags.
Source§impl Clone for ComboBoxFlags
impl Clone for ComboBoxFlags
Source§fn clone(&self) -> ComboBoxFlags
fn clone(&self) -> ComboBoxFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ComboBoxFlags
impl Debug for ComboBoxFlags
Source§impl Extend<ComboBoxFlags> for ComboBoxFlags
impl Extend<ComboBoxFlags> for ComboBoxFlags
Source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = ComboBoxFlags>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = ComboBoxFlags>,
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Source§impl FromIterator<ComboBoxFlags> for ComboBoxFlags
impl FromIterator<ComboBoxFlags> for ComboBoxFlags
Source§fn from_iter<T>(iterator: T) -> ComboBoxFlagswhere
T: IntoIterator<Item = ComboBoxFlags>,
fn from_iter<T>(iterator: T) -> ComboBoxFlagswhere
T: IntoIterator<Item = ComboBoxFlags>,
Source§impl Hash for ComboBoxFlags
impl Hash for ComboBoxFlags
Source§impl LowerHex for ComboBoxFlags
impl LowerHex for ComboBoxFlags
Source§impl Not for ComboBoxFlags
impl Not for ComboBoxFlags
Source§fn not(self) -> ComboBoxFlags
fn not(self) -> ComboBoxFlags
Returns the complement of this set of flags.
Source§type Output = ComboBoxFlags
type Output = ComboBoxFlags
!
operator.Source§impl Octal for ComboBoxFlags
impl Octal for ComboBoxFlags
Source§impl Ord for ComboBoxFlags
impl Ord for ComboBoxFlags
Source§fn cmp(&self, other: &ComboBoxFlags) -> Ordering
fn cmp(&self, other: &ComboBoxFlags) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ComboBoxFlags
impl PartialEq for ComboBoxFlags
Source§impl PartialOrd for ComboBoxFlags
impl PartialOrd for ComboBoxFlags
Source§impl Sub for ComboBoxFlags
impl Sub for ComboBoxFlags
Source§fn sub(self, other: ComboBoxFlags) -> ComboBoxFlags
fn sub(self, other: ComboBoxFlags) -> ComboBoxFlags
Returns the set difference of the two sets of flags.
Source§type Output = ComboBoxFlags
type Output = ComboBoxFlags
-
operator.Source§impl SubAssign for ComboBoxFlags
impl SubAssign for ComboBoxFlags
Source§fn sub_assign(&mut self, other: ComboBoxFlags)
fn sub_assign(&mut self, other: ComboBoxFlags)
Disables all flags enabled in the set.
Source§impl UpperHex for ComboBoxFlags
impl UpperHex for ComboBoxFlags
impl Copy for ComboBoxFlags
impl Eq for ComboBoxFlags
impl StructuralPartialEq for ComboBoxFlags
Auto Trait Implementations§
impl Freeze for ComboBoxFlags
impl RefUnwindSafe for ComboBoxFlags
impl Send for ComboBoxFlags
impl Sync for ComboBoxFlags
impl Unpin for ComboBoxFlags
impl UnwindSafe for ComboBoxFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more