Struct imgui::ImGuiInputTextFlags []

pub struct ImGuiInputTextFlags {
    // some fields omitted
}

Methods

impl ImGuiInputTextFlags

fn empty() -> ImGuiInputTextFlags

Returns an empty set of flags.

fn all() -> ImGuiInputTextFlags

Returns the set containing all flags.

fn bits(&self) -> i32

Returns the raw value of the flags currently stored.

fn from_bits(bits: i32) -> Option<ImGuiInputTextFlags>

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

fn from_bits_truncate(bits: i32) -> ImGuiInputTextFlags

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

fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

fn is_all(&self) -> bool

Returns true if all flags are currently set.

fn intersects(&self, other: ImGuiInputTextFlags) -> bool

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

fn contains(&self, other: ImGuiInputTextFlags) -> bool

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

fn insert(&mut self, other: ImGuiInputTextFlags)

Inserts the specified flags in-place.

fn remove(&mut self, other: ImGuiInputTextFlags)

Removes the specified flags in-place.

fn toggle(&mut self, other: ImGuiInputTextFlags)

Toggles the specified flags in-place.

impl ImGuiInputTextFlags

fn with(self, mask: ImGuiInputTextFlags, value: bool) -> ImGuiInputTextFlags

fn set(&mut self, mask: ImGuiInputTextFlags, value: bool)

Trait Implementations

impl Hash for ImGuiInputTextFlags

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

impl Ord for ImGuiInputTextFlags

fn cmp(&self, __arg_0: &ImGuiInputTextFlags) -> Ordering

impl PartialOrd<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn partial_cmp(&self, __arg_0: &ImGuiInputTextFlags) -> Option<Ordering>

fn lt(&self, __arg_0: &ImGuiInputTextFlags) -> bool

fn le(&self, __arg_0: &ImGuiInputTextFlags) -> bool

fn gt(&self, __arg_0: &ImGuiInputTextFlags) -> bool

fn ge(&self, __arg_0: &ImGuiInputTextFlags) -> bool

impl Clone for ImGuiInputTextFlags

fn clone(&self) -> ImGuiInputTextFlags

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Eq for ImGuiInputTextFlags

impl PartialEq<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn eq(&self, __arg_0: &ImGuiInputTextFlags) -> bool

fn ne(&self, __arg_0: &ImGuiInputTextFlags) -> bool

impl Copy for ImGuiInputTextFlags

impl Debug for ImGuiInputTextFlags

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl BitOr<ImGuiInputTextFlags> for ImGuiInputTextFlags

type Output = ImGuiInputTextFlags

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

Returns the union of the two sets of flags.

impl BitOrAssign<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn bitor_assign(&mut self, other: ImGuiInputTextFlags)

Adds the set of flags.

impl BitXor<ImGuiInputTextFlags> for ImGuiInputTextFlags

type Output = ImGuiInputTextFlags

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

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

impl BitXorAssign<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn bitxor_assign(&mut self, other: ImGuiInputTextFlags)

Toggles the set of flags.

impl BitAnd<ImGuiInputTextFlags> for ImGuiInputTextFlags

type Output = ImGuiInputTextFlags

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

Returns the intersection between the two sets of flags.

impl BitAndAssign<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn bitand_assign(&mut self, other: ImGuiInputTextFlags)

Disables all flags disabled in the set.

impl Sub<ImGuiInputTextFlags> for ImGuiInputTextFlags

type Output = ImGuiInputTextFlags

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

Returns the set difference of the two sets of flags.

impl SubAssign<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn sub_assign(&mut self, other: ImGuiInputTextFlags)

Disables all flags enabled in the set.

impl Not for ImGuiInputTextFlags

type Output = ImGuiInputTextFlags

fn not(self) -> ImGuiInputTextFlags

Returns the complement of this set of flags.

impl Extend<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn extend<T>(&mut self, iterator: T) where T: IntoIterator<Item=ImGuiInputTextFlags>

impl FromIterator<ImGuiInputTextFlags> for ImGuiInputTextFlags

fn from_iter<T>(iterator: T) -> ImGuiInputTextFlags where T: IntoIterator<Item=ImGuiInputTextFlags>