Struct imgui_sys::ImGuiColorEditFlags [−]
#[repr(C)]pub struct ImGuiColorEditFlags { /* fields omitted */ }
Color edit flags
Methods
impl ImGuiColorEditFlags
impl ImGuiColorEditFlagspub const NoAlpha: ImGuiColorEditFlags
NoAlpha: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 1,}
pub const NoPicker: ImGuiColorEditFlags
NoPicker: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 2,}
pub const NoOptions: ImGuiColorEditFlags
NoOptions: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 3,}
pub const NoSmallPreview: ImGuiColorEditFlags
NoSmallPreview: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 4,}
pub const NoInputs: ImGuiColorEditFlags
NoInputs: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 5,}
pub const NoTooltip: ImGuiColorEditFlags
NoTooltip: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 6,}
pub const NoLabel: ImGuiColorEditFlags
NoLabel: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 7,}
pub const NoSidePreview: ImGuiColorEditFlags
NoSidePreview: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 8,}
pub const AlphaBar: ImGuiColorEditFlags
AlphaBar: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 9,}
pub const AlphaPreview: ImGuiColorEditFlags
AlphaPreview: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 10,}
pub const AlphaPreviewHalf: ImGuiColorEditFlags
AlphaPreviewHalf: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 11,}
pub const HDR: ImGuiColorEditFlags
HDR: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 12,}
pub const RGB: ImGuiColorEditFlags
RGB: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 13,}
pub const HSV: ImGuiColorEditFlags
HSV: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 14,}
pub const HEX: ImGuiColorEditFlags
HEX: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 15,}
pub const Uint8: ImGuiColorEditFlags
Uint8: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 16,}
pub const Float: ImGuiColorEditFlags
Float: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 17,}
pub const PickerHueBar: ImGuiColorEditFlags
PickerHueBar: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 18,}
pub const PickerHueWheel: ImGuiColorEditFlags
PickerHueWheel: ImGuiColorEditFlags = ImGuiColorEditFlags{bits: 1 << 19,}
pub fn empty() -> ImGuiColorEditFlags
pub fn empty() -> ImGuiColorEditFlagsReturns an empty set of flags.
pub fn all() -> ImGuiColorEditFlags
pub fn all() -> ImGuiColorEditFlagsReturns 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<ImGuiColorEditFlags>
pub fn from_bits(bits: c_int) -> Option<ImGuiColorEditFlags>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) -> ImGuiColorEditFlags
pub fn from_bits_truncate(bits: c_int) -> ImGuiColorEditFlagsConvert 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: ImGuiColorEditFlags) -> bool
pub fn intersects(&self, other: ImGuiColorEditFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: ImGuiColorEditFlags) -> bool
pub fn contains(&self, other: ImGuiColorEditFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: ImGuiColorEditFlags)
pub fn insert(&mut self, other: ImGuiColorEditFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: ImGuiColorEditFlags)
pub fn remove(&mut self, other: ImGuiColorEditFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: ImGuiColorEditFlags)
pub fn toggle(&mut self, other: ImGuiColorEditFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: ImGuiColorEditFlags, value: bool)
pub fn set(&mut self, other: ImGuiColorEditFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for ImGuiColorEditFlags
impl Copy for ImGuiColorEditFlagsimpl PartialEq for ImGuiColorEditFlags
impl PartialEq for ImGuiColorEditFlagsfn eq(&self, other: &ImGuiColorEditFlags) -> bool
fn eq(&self, other: &ImGuiColorEditFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ImGuiColorEditFlags) -> bool
fn ne(&self, other: &ImGuiColorEditFlags) -> boolThis method tests for !=.
impl Eq for ImGuiColorEditFlags
impl Eq for ImGuiColorEditFlagsimpl Clone for ImGuiColorEditFlags
impl Clone for ImGuiColorEditFlagsfn clone(&self) -> ImGuiColorEditFlags
fn clone(&self) -> ImGuiColorEditFlagsReturns 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 ImGuiColorEditFlags
impl PartialOrd for ImGuiColorEditFlagsfn partial_cmp(&self, other: &ImGuiColorEditFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &ImGuiColorEditFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &ImGuiColorEditFlags) -> bool
fn lt(&self, other: &ImGuiColorEditFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &ImGuiColorEditFlags) -> bool
fn le(&self, other: &ImGuiColorEditFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &ImGuiColorEditFlags) -> bool
fn gt(&self, other: &ImGuiColorEditFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &ImGuiColorEditFlags) -> bool
fn ge(&self, other: &ImGuiColorEditFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for ImGuiColorEditFlags
impl Ord for ImGuiColorEditFlagsfn cmp(&self, other: &ImGuiColorEditFlags) -> Ordering
fn cmp(&self, other: &ImGuiColorEditFlags) -> 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 ImGuiColorEditFlags
impl Hash for ImGuiColorEditFlagsfn 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 ImGuiColorEditFlags
impl Debug for ImGuiColorEditFlagsimpl Binary for ImGuiColorEditFlags
impl Binary for ImGuiColorEditFlagsimpl Octal for ImGuiColorEditFlags
impl Octal for ImGuiColorEditFlagsimpl LowerHex for ImGuiColorEditFlags
impl LowerHex for ImGuiColorEditFlagsimpl UpperHex for ImGuiColorEditFlags
impl UpperHex for ImGuiColorEditFlagsimpl BitOr for ImGuiColorEditFlags
impl BitOr for ImGuiColorEditFlagstype Output = ImGuiColorEditFlags
The resulting type after applying the | operator.
fn bitor(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags
fn bitor(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlagsReturns the union of the two sets of flags.
impl BitOrAssign for ImGuiColorEditFlags
impl BitOrAssign for ImGuiColorEditFlagsfn bitor_assign(&mut self, other: ImGuiColorEditFlags)
fn bitor_assign(&mut self, other: ImGuiColorEditFlags)Adds the set of flags.
impl BitXor for ImGuiColorEditFlags
impl BitXor for ImGuiColorEditFlagstype Output = ImGuiColorEditFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags
fn bitxor(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for ImGuiColorEditFlags
impl BitXorAssign for ImGuiColorEditFlagsfn bitxor_assign(&mut self, other: ImGuiColorEditFlags)
fn bitxor_assign(&mut self, other: ImGuiColorEditFlags)Toggles the set of flags.
impl BitAnd for ImGuiColorEditFlags
impl BitAnd for ImGuiColorEditFlagstype Output = ImGuiColorEditFlags
The resulting type after applying the & operator.
fn bitand(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags
fn bitand(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for ImGuiColorEditFlags
impl BitAndAssign for ImGuiColorEditFlagsfn bitand_assign(&mut self, other: ImGuiColorEditFlags)
fn bitand_assign(&mut self, other: ImGuiColorEditFlags)Disables all flags disabled in the set.
impl Sub for ImGuiColorEditFlags
impl Sub for ImGuiColorEditFlagstype Output = ImGuiColorEditFlags
The resulting type after applying the - operator.
fn sub(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags
fn sub(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlagsReturns the set difference of the two sets of flags.
impl SubAssign for ImGuiColorEditFlags
impl SubAssign for ImGuiColorEditFlagsfn sub_assign(&mut self, other: ImGuiColorEditFlags)
fn sub_assign(&mut self, other: ImGuiColorEditFlags)Disables all flags enabled in the set.
impl Not for ImGuiColorEditFlags
impl Not for ImGuiColorEditFlagstype Output = ImGuiColorEditFlags
The resulting type after applying the ! operator.
fn not(self) -> ImGuiColorEditFlags
fn not(self) -> ImGuiColorEditFlagsReturns the complement of this set of flags.
impl Extend<ImGuiColorEditFlags> for ImGuiColorEditFlags
impl Extend<ImGuiColorEditFlags> for ImGuiColorEditFlagsfn extend<T: IntoIterator<Item = ImGuiColorEditFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = ImGuiColorEditFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<ImGuiColorEditFlags> for ImGuiColorEditFlags
impl FromIterator<ImGuiColorEditFlags> for ImGuiColorEditFlagsfn from_iter<T: IntoIterator<Item = ImGuiColorEditFlags>>(
iterator: T
) -> ImGuiColorEditFlags
fn from_iter<T: IntoIterator<Item = ImGuiColorEditFlags>>(
iterator: T
) -> ImGuiColorEditFlagsCreates a value from an iterator. Read more
Auto Trait Implementations
impl Send for ImGuiColorEditFlags
impl Send for ImGuiColorEditFlagsimpl Sync for ImGuiColorEditFlags
impl Sync for ImGuiColorEditFlags