Struct imgui::ImGuiTreeNodeFlags []

pub struct ImGuiTreeNodeFlags {
    // some fields omitted
}

Methods

impl ImGuiTreeNodeFlags

fn empty() -> ImGuiTreeNodeFlags

Returns an empty set of flags.

fn all() -> ImGuiTreeNodeFlags

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<ImGuiTreeNodeFlags>

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

fn from_bits_truncate(bits: i32) -> ImGuiTreeNodeFlags

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: ImGuiTreeNodeFlags) -> bool

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

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

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

fn insert(&mut self, other: ImGuiTreeNodeFlags)

Inserts the specified flags in-place.

fn remove(&mut self, other: ImGuiTreeNodeFlags)

Removes the specified flags in-place.

fn toggle(&mut self, other: ImGuiTreeNodeFlags)

Toggles the specified flags in-place.

impl ImGuiTreeNodeFlags

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

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

Trait Implementations

impl Hash for ImGuiTreeNodeFlags

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

impl Ord for ImGuiTreeNodeFlags

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

impl PartialOrd<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

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

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

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

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

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

impl Clone for ImGuiTreeNodeFlags

fn clone(&self) -> ImGuiTreeNodeFlags

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 ImGuiTreeNodeFlags

impl PartialEq<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

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

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

impl Copy for ImGuiTreeNodeFlags

impl Debug for ImGuiTreeNodeFlags

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

Formats the value using the given formatter.

impl BitOr<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

type Output = ImGuiTreeNodeFlags

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

Returns the union of the two sets of flags.

impl BitOrAssign<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

fn bitor_assign(&mut self, other: ImGuiTreeNodeFlags)

Adds the set of flags.

impl BitXor<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

type Output = ImGuiTreeNodeFlags

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

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

impl BitXorAssign<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

fn bitxor_assign(&mut self, other: ImGuiTreeNodeFlags)

Toggles the set of flags.

impl BitAnd<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

type Output = ImGuiTreeNodeFlags

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

Returns the intersection between the two sets of flags.

impl BitAndAssign<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

fn bitand_assign(&mut self, other: ImGuiTreeNodeFlags)

Disables all flags disabled in the set.

impl Sub<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

type Output = ImGuiTreeNodeFlags

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

Returns the set difference of the two sets of flags.

impl SubAssign<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

fn sub_assign(&mut self, other: ImGuiTreeNodeFlags)

Disables all flags enabled in the set.

impl Not for ImGuiTreeNodeFlags

type Output = ImGuiTreeNodeFlags

fn not(self) -> ImGuiTreeNodeFlags

Returns the complement of this set of flags.

impl Extend<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

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

impl FromIterator<ImGuiTreeNodeFlags> for ImGuiTreeNodeFlags

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