Struct imgui_sys::ImGuiHoveredFlags [−]
#[repr(C)]pub struct ImGuiHoveredFlags { /* fields omitted */ }
Flags for hover checks
Methods
impl ImGuiHoveredFlags
impl ImGuiHoveredFlagspub const ChildWindows: ImGuiHoveredFlags
ChildWindows: ImGuiHoveredFlags = ImGuiHoveredFlags{bits: 1 << 0,}
pub const RootWindow: ImGuiHoveredFlags
RootWindow: ImGuiHoveredFlags = ImGuiHoveredFlags{bits: 1 << 1,}
pub const AllowWhenBlockedByPopup: ImGuiHoveredFlags
AllowWhenBlockedByPopup: ImGuiHoveredFlags = ImGuiHoveredFlags{bits: 1 << 2,}
pub const AllowWhenBlockedByActiveItem: ImGuiHoveredFlags
AllowWhenBlockedByActiveItem: ImGuiHoveredFlags = ImGuiHoveredFlags{bits: 1 << 4,}
pub const AllowWhenOverlapped: ImGuiHoveredFlags
AllowWhenOverlapped: ImGuiHoveredFlags = ImGuiHoveredFlags{bits: 1 << 5,}
pub const RectOnly: ImGuiHoveredFlags
RectOnly: ImGuiHoveredFlags = ImGuiHoveredFlags{bits: <ImGuiHoveredFlags>::AllowWhenBlockedByPopup.bits | <ImGuiHoveredFlags>::AllowWhenBlockedByActiveItem.bits | <ImGuiHoveredFlags>::AllowWhenOverlapped.bits,}
pub const RootAndChildWindows: ImGuiHoveredFlags
RootAndChildWindows: ImGuiHoveredFlags = ImGuiHoveredFlags{bits: <ImGuiFocusedFlags>::RootWindow.bits | <ImGuiFocusedFlags>::ChildWindows.bits,}
pub fn empty() -> ImGuiHoveredFlags
pub fn empty() -> ImGuiHoveredFlagsReturns an empty set of flags.
pub fn all() -> ImGuiHoveredFlags
pub fn all() -> ImGuiHoveredFlagsReturns the set containing all flags.
pub fn bits(&self) -> c_int
pub fn bits(&self) -> c_intReturns the raw value of the flags currently stored.
pub fn from_bits(bits: c_int) -> Option<ImGuiHoveredFlags>
pub fn from_bits(bits: c_int) -> Option<ImGuiHoveredFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: c_int) -> ImGuiHoveredFlags
pub fn from_bits_truncate(bits: c_int) -> ImGuiHoveredFlagsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: ImGuiHoveredFlags) -> bool
pub fn intersects(&self, other: ImGuiHoveredFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: ImGuiHoveredFlags) -> bool
pub fn contains(&self, other: ImGuiHoveredFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: ImGuiHoveredFlags)
pub fn insert(&mut self, other: ImGuiHoveredFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: ImGuiHoveredFlags)
pub fn remove(&mut self, other: ImGuiHoveredFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: ImGuiHoveredFlags)
pub fn toggle(&mut self, other: ImGuiHoveredFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: ImGuiHoveredFlags, value: bool)
pub fn set(&mut self, other: ImGuiHoveredFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for ImGuiHoveredFlags
impl Copy for ImGuiHoveredFlagsimpl PartialEq for ImGuiHoveredFlags
impl PartialEq for ImGuiHoveredFlagsfn eq(&self, other: &ImGuiHoveredFlags) -> bool
fn eq(&self, other: &ImGuiHoveredFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ImGuiHoveredFlags) -> bool
fn ne(&self, other: &ImGuiHoveredFlags) -> boolThis method tests for !=.
impl Eq for ImGuiHoveredFlags
impl Eq for ImGuiHoveredFlagsimpl Clone for ImGuiHoveredFlags
impl Clone for ImGuiHoveredFlagsfn clone(&self) -> ImGuiHoveredFlags
fn clone(&self) -> ImGuiHoveredFlagsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd for ImGuiHoveredFlags
impl PartialOrd for ImGuiHoveredFlagsfn partial_cmp(&self, other: &ImGuiHoveredFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &ImGuiHoveredFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &ImGuiHoveredFlags) -> bool
fn lt(&self, other: &ImGuiHoveredFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &ImGuiHoveredFlags) -> bool
fn le(&self, other: &ImGuiHoveredFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &ImGuiHoveredFlags) -> bool
fn gt(&self, other: &ImGuiHoveredFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &ImGuiHoveredFlags) -> bool
fn ge(&self, other: &ImGuiHoveredFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for ImGuiHoveredFlags
impl Ord for ImGuiHoveredFlagsfn cmp(&self, other: &ImGuiHoveredFlags) -> Ordering
fn cmp(&self, other: &ImGuiHoveredFlags) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for ImGuiHoveredFlags
impl Hash for ImGuiHoveredFlagsfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for ImGuiHoveredFlags
impl Debug for ImGuiHoveredFlagsimpl Binary for ImGuiHoveredFlags
impl Binary for ImGuiHoveredFlagsimpl Octal for ImGuiHoveredFlags
impl Octal for ImGuiHoveredFlagsimpl LowerHex for ImGuiHoveredFlags
impl LowerHex for ImGuiHoveredFlagsimpl UpperHex for ImGuiHoveredFlags
impl UpperHex for ImGuiHoveredFlagsimpl BitOr for ImGuiHoveredFlags
impl BitOr for ImGuiHoveredFlagstype Output = ImGuiHoveredFlags
The resulting type after applying the | operator.
fn bitor(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlags
fn bitor(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlagsReturns the union of the two sets of flags.
impl BitOrAssign for ImGuiHoveredFlags
impl BitOrAssign for ImGuiHoveredFlagsfn bitor_assign(&mut self, other: ImGuiHoveredFlags)
fn bitor_assign(&mut self, other: ImGuiHoveredFlags)Adds the set of flags.
impl BitXor for ImGuiHoveredFlags
impl BitXor for ImGuiHoveredFlagstype Output = ImGuiHoveredFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlags
fn bitxor(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for ImGuiHoveredFlags
impl BitXorAssign for ImGuiHoveredFlagsfn bitxor_assign(&mut self, other: ImGuiHoveredFlags)
fn bitxor_assign(&mut self, other: ImGuiHoveredFlags)Toggles the set of flags.
impl BitAnd for ImGuiHoveredFlags
impl BitAnd for ImGuiHoveredFlagstype Output = ImGuiHoveredFlags
The resulting type after applying the & operator.
fn bitand(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlags
fn bitand(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for ImGuiHoveredFlags
impl BitAndAssign for ImGuiHoveredFlagsfn bitand_assign(&mut self, other: ImGuiHoveredFlags)
fn bitand_assign(&mut self, other: ImGuiHoveredFlags)Disables all flags disabled in the set.
impl Sub for ImGuiHoveredFlags
impl Sub for ImGuiHoveredFlagstype Output = ImGuiHoveredFlags
The resulting type after applying the - operator.
fn sub(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlags
fn sub(self, other: ImGuiHoveredFlags) -> ImGuiHoveredFlagsReturns the set difference of the two sets of flags.
impl SubAssign for ImGuiHoveredFlags
impl SubAssign for ImGuiHoveredFlagsfn sub_assign(&mut self, other: ImGuiHoveredFlags)
fn sub_assign(&mut self, other: ImGuiHoveredFlags)Disables all flags enabled in the set.
impl Not for ImGuiHoveredFlags
impl Not for ImGuiHoveredFlagstype Output = ImGuiHoveredFlags
The resulting type after applying the ! operator.
fn not(self) -> ImGuiHoveredFlags
fn not(self) -> ImGuiHoveredFlagsReturns the complement of this set of flags.
impl Extend<ImGuiHoveredFlags> for ImGuiHoveredFlags
impl Extend<ImGuiHoveredFlags> for ImGuiHoveredFlagsfn extend<T: IntoIterator<Item = ImGuiHoveredFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = ImGuiHoveredFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<ImGuiHoveredFlags> for ImGuiHoveredFlags
impl FromIterator<ImGuiHoveredFlags> for ImGuiHoveredFlagsfn from_iter<T: IntoIterator<Item = ImGuiHoveredFlags>>(
iterator: T
) -> ImGuiHoveredFlags
fn from_iter<T: IntoIterator<Item = ImGuiHoveredFlags>>(
iterator: T
) -> ImGuiHoveredFlagsCreates a value from an iterator. Read more
Auto Trait Implementations
impl Send for ImGuiHoveredFlags
impl Send for ImGuiHoveredFlagsimpl Sync for ImGuiHoveredFlags
impl Sync for ImGuiHoveredFlags