Struct imgui_sys::ImDrawCornerFlags [−]
#[repr(C)]pub struct ImDrawCornerFlags { /* fields omitted */ }
Flags for indictating which corner of a rectangle should be rounded
Methods
impl ImDrawCornerFlags
impl ImDrawCornerFlagspub const TopLeft: ImDrawCornerFlags
TopLeft: ImDrawCornerFlags = ImDrawCornerFlags{bits: 1 << 0,}
pub const TopRight: ImDrawCornerFlags
TopRight: ImDrawCornerFlags = ImDrawCornerFlags{bits: 1 << 1,}
pub const BotLeft: ImDrawCornerFlags
BotLeft: ImDrawCornerFlags = ImDrawCornerFlags{bits: 1 << 2,}
pub const BotRight: ImDrawCornerFlags
BotRight: ImDrawCornerFlags = ImDrawCornerFlags{bits: 1 << 3,}
pub const Top: ImDrawCornerFlags
Top: ImDrawCornerFlags = ImDrawCornerFlags{bits: <ImDrawCornerFlags>::TopLeft.bits | <ImDrawCornerFlags>::TopRight.bits,}
pub const Bot: ImDrawCornerFlags
Bot: ImDrawCornerFlags = ImDrawCornerFlags{bits: <ImDrawCornerFlags>::BotLeft.bits | <ImDrawCornerFlags>::BotRight.bits,}
pub const Left: ImDrawCornerFlags
Left: ImDrawCornerFlags = ImDrawCornerFlags{bits: <ImDrawCornerFlags>::TopLeft.bits | <ImDrawCornerFlags>::BotLeft.bits,}
pub const Right: ImDrawCornerFlags
Right: ImDrawCornerFlags = ImDrawCornerFlags{bits: <ImDrawCornerFlags>::TopRight.bits | <ImDrawCornerFlags>::BotRight.bits,}
pub const All: ImDrawCornerFlags
All: ImDrawCornerFlags = ImDrawCornerFlags{bits: 15,}
pub fn empty() -> ImDrawCornerFlags
pub fn empty() -> ImDrawCornerFlagsReturns an empty set of flags.
pub fn all() -> ImDrawCornerFlags
pub fn all() -> ImDrawCornerFlagsReturns 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<ImDrawCornerFlags>
pub fn from_bits(bits: c_int) -> Option<ImDrawCornerFlags>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) -> ImDrawCornerFlags
pub fn from_bits_truncate(bits: c_int) -> ImDrawCornerFlagsConvert 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: ImDrawCornerFlags) -> bool
pub fn intersects(&self, other: ImDrawCornerFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: ImDrawCornerFlags) -> bool
pub fn contains(&self, other: ImDrawCornerFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: ImDrawCornerFlags)
pub fn insert(&mut self, other: ImDrawCornerFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: ImDrawCornerFlags)
pub fn remove(&mut self, other: ImDrawCornerFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: ImDrawCornerFlags)
pub fn toggle(&mut self, other: ImDrawCornerFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: ImDrawCornerFlags, value: bool)
pub fn set(&mut self, other: ImDrawCornerFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for ImDrawCornerFlags
impl Copy for ImDrawCornerFlagsimpl PartialEq for ImDrawCornerFlags
impl PartialEq for ImDrawCornerFlagsfn eq(&self, other: &ImDrawCornerFlags) -> bool
fn eq(&self, other: &ImDrawCornerFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ImDrawCornerFlags) -> bool
fn ne(&self, other: &ImDrawCornerFlags) -> boolThis method tests for !=.
impl Eq for ImDrawCornerFlags
impl Eq for ImDrawCornerFlagsimpl Clone for ImDrawCornerFlags
impl Clone for ImDrawCornerFlagsfn clone(&self) -> ImDrawCornerFlags
fn clone(&self) -> ImDrawCornerFlagsReturns 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 ImDrawCornerFlags
impl PartialOrd for ImDrawCornerFlagsfn partial_cmp(&self, other: &ImDrawCornerFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &ImDrawCornerFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &ImDrawCornerFlags) -> bool
fn lt(&self, other: &ImDrawCornerFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &ImDrawCornerFlags) -> bool
fn le(&self, other: &ImDrawCornerFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &ImDrawCornerFlags) -> bool
fn gt(&self, other: &ImDrawCornerFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &ImDrawCornerFlags) -> bool
fn ge(&self, other: &ImDrawCornerFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for ImDrawCornerFlags
impl Ord for ImDrawCornerFlagsfn cmp(&self, other: &ImDrawCornerFlags) -> Ordering
fn cmp(&self, other: &ImDrawCornerFlags) -> 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 ImDrawCornerFlags
impl Hash for ImDrawCornerFlagsfn 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 ImDrawCornerFlags
impl Debug for ImDrawCornerFlagsimpl Binary for ImDrawCornerFlags
impl Binary for ImDrawCornerFlagsimpl Octal for ImDrawCornerFlags
impl Octal for ImDrawCornerFlagsimpl LowerHex for ImDrawCornerFlags
impl LowerHex for ImDrawCornerFlagsimpl UpperHex for ImDrawCornerFlags
impl UpperHex for ImDrawCornerFlagsimpl BitOr for ImDrawCornerFlags
impl BitOr for ImDrawCornerFlagstype Output = ImDrawCornerFlags
The resulting type after applying the | operator.
fn bitor(self, other: ImDrawCornerFlags) -> ImDrawCornerFlags
fn bitor(self, other: ImDrawCornerFlags) -> ImDrawCornerFlagsReturns the union of the two sets of flags.
impl BitOrAssign for ImDrawCornerFlags
impl BitOrAssign for ImDrawCornerFlagsfn bitor_assign(&mut self, other: ImDrawCornerFlags)
fn bitor_assign(&mut self, other: ImDrawCornerFlags)Adds the set of flags.
impl BitXor for ImDrawCornerFlags
impl BitXor for ImDrawCornerFlagstype Output = ImDrawCornerFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: ImDrawCornerFlags) -> ImDrawCornerFlags
fn bitxor(self, other: ImDrawCornerFlags) -> ImDrawCornerFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for ImDrawCornerFlags
impl BitXorAssign for ImDrawCornerFlagsfn bitxor_assign(&mut self, other: ImDrawCornerFlags)
fn bitxor_assign(&mut self, other: ImDrawCornerFlags)Toggles the set of flags.
impl BitAnd for ImDrawCornerFlags
impl BitAnd for ImDrawCornerFlagstype Output = ImDrawCornerFlags
The resulting type after applying the & operator.
fn bitand(self, other: ImDrawCornerFlags) -> ImDrawCornerFlags
fn bitand(self, other: ImDrawCornerFlags) -> ImDrawCornerFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for ImDrawCornerFlags
impl BitAndAssign for ImDrawCornerFlagsfn bitand_assign(&mut self, other: ImDrawCornerFlags)
fn bitand_assign(&mut self, other: ImDrawCornerFlags)Disables all flags disabled in the set.
impl Sub for ImDrawCornerFlags
impl Sub for ImDrawCornerFlagstype Output = ImDrawCornerFlags
The resulting type after applying the - operator.
fn sub(self, other: ImDrawCornerFlags) -> ImDrawCornerFlags
fn sub(self, other: ImDrawCornerFlags) -> ImDrawCornerFlagsReturns the set difference of the two sets of flags.
impl SubAssign for ImDrawCornerFlags
impl SubAssign for ImDrawCornerFlagsfn sub_assign(&mut self, other: ImDrawCornerFlags)
fn sub_assign(&mut self, other: ImDrawCornerFlags)Disables all flags enabled in the set.
impl Not for ImDrawCornerFlags
impl Not for ImDrawCornerFlagstype Output = ImDrawCornerFlags
The resulting type after applying the ! operator.
fn not(self) -> ImDrawCornerFlags
fn not(self) -> ImDrawCornerFlagsReturns the complement of this set of flags.
impl Extend<ImDrawCornerFlags> for ImDrawCornerFlags
impl Extend<ImDrawCornerFlags> for ImDrawCornerFlagsfn extend<T: IntoIterator<Item = ImDrawCornerFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = ImDrawCornerFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<ImDrawCornerFlags> for ImDrawCornerFlags
impl FromIterator<ImDrawCornerFlags> for ImDrawCornerFlagsfn from_iter<T: IntoIterator<Item = ImDrawCornerFlags>>(
iterator: T
) -> ImDrawCornerFlags
fn from_iter<T: IntoIterator<Item = ImDrawCornerFlags>>(
iterator: T
) -> ImDrawCornerFlagsCreates a value from an iterator. Read more
Auto Trait Implementations
impl Send for ImDrawCornerFlags
impl Send for ImDrawCornerFlagsimpl Sync for ImDrawCornerFlags
impl Sync for ImDrawCornerFlags