[]Struct imgui::ComboBoxFlags

#[repr(transparent)]
pub struct ComboBoxFlags { /* fields omitted */ }

Flags for combo boxes

Methods

impl ComboBoxFlags

pub const POPUP_ALIGN_LEFT: ComboBoxFlags

Align the popup toward the left by default

pub const HEIGHT_SMALL: ComboBoxFlags

Max ~4 items visible.

pub const HEIGHT_REGULAR: ComboBoxFlags

Max ~8 items visible (default)

pub const HEIGHT_LARGE: ComboBoxFlags

Max ~20 items visible

pub const HEIGHT_LARGEST: ComboBoxFlags

As many fitting items as possible

pub const NO_ARROW_BUTTON: ComboBoxFlags

Display on the preview box without the square arrow button

pub const NO_PREVIEW: ComboBoxFlags

Display only a square arrow button

pub const fn empty() -> ComboBoxFlags

Returns an empty set of flags

pub const fn all() -> ComboBoxFlags

Returns the set containing all flags.

pub const fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<ComboBoxFlags>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> ComboBoxFlags

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub const fn intersects(&self, other: ComboBoxFlags) -> bool

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: ComboBoxFlags) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: ComboBoxFlags)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: ComboBoxFlags)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: ComboBoxFlags)

Toggles the specified flags in-place.

pub fn set(&mut self, other: ComboBoxFlags, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Eq for ComboBoxFlags

impl Extend<ComboBoxFlags> for ComboBoxFlags

impl Clone for ComboBoxFlags

impl PartialOrd<ComboBoxFlags> for ComboBoxFlags

impl Ord for ComboBoxFlags

impl PartialEq<ComboBoxFlags> for ComboBoxFlags

impl Copy for ComboBoxFlags

impl Hash for ComboBoxFlags

impl Sub<ComboBoxFlags> for ComboBoxFlags

type Output = ComboBoxFlags

The resulting type after applying the - operator.

fn sub(self, other: ComboBoxFlags) -> ComboBoxFlags

Returns the set difference of the two sets of flags.

impl SubAssign<ComboBoxFlags> for ComboBoxFlags

fn sub_assign(&mut self, other: ComboBoxFlags)

Disables all flags enabled in the set.

impl Not for ComboBoxFlags

type Output = ComboBoxFlags

The resulting type after applying the ! operator.

fn not(self) -> ComboBoxFlags

Returns the complement of this set of flags.

impl BitAnd<ComboBoxFlags> for ComboBoxFlags

type Output = ComboBoxFlags

The resulting type after applying the & operator.

fn bitand(self, other: ComboBoxFlags) -> ComboBoxFlags

Returns the intersection between the two sets of flags.

impl BitOr<ComboBoxFlags> for ComboBoxFlags

type Output = ComboBoxFlags

The resulting type after applying the | operator.

fn bitor(self, other: ComboBoxFlags) -> ComboBoxFlags

Returns the union of the two sets of flags.

impl BitXor<ComboBoxFlags> for ComboBoxFlags

type Output = ComboBoxFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: ComboBoxFlags) -> ComboBoxFlags

Returns the left flags, but with all the right flags toggled.

impl BitAndAssign<ComboBoxFlags> for ComboBoxFlags

fn bitand_assign(&mut self, other: ComboBoxFlags)

Disables all flags disabled in the set.

impl BitOrAssign<ComboBoxFlags> for ComboBoxFlags

fn bitor_assign(&mut self, other: ComboBoxFlags)

Adds the set of flags.

impl BitXorAssign<ComboBoxFlags> for ComboBoxFlags

fn bitxor_assign(&mut self, other: ComboBoxFlags)

Toggles the set of flags.

impl Debug for ComboBoxFlags

impl FromIterator<ComboBoxFlags> for ComboBoxFlags

impl Octal for ComboBoxFlags

impl Binary for ComboBoxFlags

impl LowerHex for ComboBoxFlags

impl UpperHex for ComboBoxFlags

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]