Struct gtk::JunctionSides [−]
pub struct JunctionSides { /* fields omitted */ }Methods
impl JunctionSides
impl JunctionSidespub const NONE: JunctionSides
NONE: JunctionSides = JunctionSides{bits: 0,}
pub const CORNER_TOPLEFT: JunctionSides
CORNER_TOPLEFT: JunctionSides = JunctionSides{bits: 1,}
pub const CORNER_TOPRIGHT: JunctionSides
CORNER_TOPRIGHT: JunctionSides = JunctionSides{bits: 2,}
pub const CORNER_BOTTOMLEFT: JunctionSides
CORNER_BOTTOMLEFT: JunctionSides = JunctionSides{bits: 4,}
pub const CORNER_BOTTOMRIGHT: JunctionSides
CORNER_BOTTOMRIGHT: JunctionSides = JunctionSides{bits: 8,}
pub const TOP: JunctionSides
TOP: JunctionSides = JunctionSides{bits: 3,}
pub const BOTTOM: JunctionSides
BOTTOM: JunctionSides = JunctionSides{bits: 12,}
pub const LEFT: JunctionSides
LEFT: JunctionSides = JunctionSides{bits: 5,}
pub const RIGHT: JunctionSides
RIGHT: JunctionSides = JunctionSides{bits: 10,}
pub fn empty() -> JunctionSides
pub fn empty() -> JunctionSidesReturns an empty set of flags.
pub fn all() -> JunctionSides
pub fn all() -> JunctionSidesReturns the set containing all flags.
pub fn bits(&self) -> u32
pub fn bits(&self) -> u32Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<JunctionSides>
pub fn from_bits(bits: u32) -> Option<JunctionSides>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> JunctionSides
pub fn from_bits_truncate(bits: u32) -> JunctionSidesConvert 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: JunctionSides) -> bool
pub fn intersects(&self, other: JunctionSides) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: JunctionSides) -> bool
pub fn contains(&self, other: JunctionSides) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: JunctionSides)
pub fn insert(&mut self, other: JunctionSides)Inserts the specified flags in-place.
pub fn remove(&mut self, other: JunctionSides)
pub fn remove(&mut self, other: JunctionSides)Removes the specified flags in-place.
pub fn toggle(&mut self, other: JunctionSides)
pub fn toggle(&mut self, other: JunctionSides)Toggles the specified flags in-place.
pub fn set(&mut self, other: JunctionSides, value: bool)
pub fn set(&mut self, other: JunctionSides, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for JunctionSides
impl Copy for JunctionSidesimpl PartialEq for JunctionSides
impl PartialEq for JunctionSidesfn eq(&self, other: &JunctionSides) -> bool
fn eq(&self, other: &JunctionSides) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &JunctionSides) -> bool
fn ne(&self, other: &JunctionSides) -> boolThis method tests for !=.
impl Eq for JunctionSides
impl Eq for JunctionSidesimpl Clone for JunctionSides
impl Clone for JunctionSidesfn clone(&self) -> JunctionSides
fn clone(&self) -> JunctionSidesReturns 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 JunctionSides
impl PartialOrd for JunctionSidesfn partial_cmp(&self, other: &JunctionSides) -> Option<Ordering>
fn partial_cmp(&self, other: &JunctionSides) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &JunctionSides) -> bool
fn lt(&self, other: &JunctionSides) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &JunctionSides) -> bool
fn le(&self, other: &JunctionSides) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &JunctionSides) -> bool
fn gt(&self, other: &JunctionSides) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &JunctionSides) -> bool
fn ge(&self, other: &JunctionSides) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for JunctionSides
impl Ord for JunctionSidesfn cmp(&self, other: &JunctionSides) -> Ordering
fn cmp(&self, other: &JunctionSides) -> 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 JunctionSides
impl Hash for JunctionSidesfn 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 JunctionSides
impl Debug for JunctionSidesimpl Binary for JunctionSides
impl Binary for JunctionSidesimpl Octal for JunctionSides
impl Octal for JunctionSidesimpl LowerHex for JunctionSides
impl LowerHex for JunctionSidesimpl UpperHex for JunctionSides
impl UpperHex for JunctionSidesimpl BitOr for JunctionSides
impl BitOr for JunctionSidestype Output = JunctionSides
The resulting type after applying the | operator.
fn bitor(self, other: JunctionSides) -> JunctionSides
fn bitor(self, other: JunctionSides) -> JunctionSidesReturns the union of the two sets of flags.
impl BitOrAssign for JunctionSides
impl BitOrAssign for JunctionSidesfn bitor_assign(&mut self, other: JunctionSides)
fn bitor_assign(&mut self, other: JunctionSides)Adds the set of flags.
impl BitXor for JunctionSides
impl BitXor for JunctionSidestype Output = JunctionSides
The resulting type after applying the ^ operator.
fn bitxor(self, other: JunctionSides) -> JunctionSides
fn bitxor(self, other: JunctionSides) -> JunctionSidesReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for JunctionSides
impl BitXorAssign for JunctionSidesfn bitxor_assign(&mut self, other: JunctionSides)
fn bitxor_assign(&mut self, other: JunctionSides)Toggles the set of flags.
impl BitAnd for JunctionSides
impl BitAnd for JunctionSidestype Output = JunctionSides
The resulting type after applying the & operator.
fn bitand(self, other: JunctionSides) -> JunctionSides
fn bitand(self, other: JunctionSides) -> JunctionSidesReturns the intersection between the two sets of flags.
impl BitAndAssign for JunctionSides
impl BitAndAssign for JunctionSidesfn bitand_assign(&mut self, other: JunctionSides)
fn bitand_assign(&mut self, other: JunctionSides)Disables all flags disabled in the set.
impl Sub for JunctionSides
impl Sub for JunctionSidestype Output = JunctionSides
The resulting type after applying the - operator.
fn sub(self, other: JunctionSides) -> JunctionSides
fn sub(self, other: JunctionSides) -> JunctionSidesReturns the set difference of the two sets of flags.
impl SubAssign for JunctionSides
impl SubAssign for JunctionSidesfn sub_assign(&mut self, other: JunctionSides)
fn sub_assign(&mut self, other: JunctionSides)Disables all flags enabled in the set.
impl Not for JunctionSides
impl Not for JunctionSidestype Output = JunctionSides
The resulting type after applying the ! operator.
fn not(self) -> JunctionSides
fn not(self) -> JunctionSidesReturns the complement of this set of flags.
impl Extend<JunctionSides> for JunctionSides
impl Extend<JunctionSides> for JunctionSidesfn extend<T: IntoIterator<Item = JunctionSides>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = JunctionSides>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<JunctionSides> for JunctionSides
impl FromIterator<JunctionSides> for JunctionSidesfn from_iter<T: IntoIterator<Item = JunctionSides>>(
iterator: T
) -> JunctionSides
fn from_iter<T: IntoIterator<Item = JunctionSides>>(
iterator: T
) -> JunctionSidesCreates a value from an iterator. Read more
impl StaticType for JunctionSides[src]
impl StaticType for JunctionSidesfn static_type() -> Type[src]
fn static_type() -> TypeReturns the type identifier of Self.
impl<'a> FromValueOptional<'a> for JunctionSides[src]
impl<'a> FromValueOptional<'a> for JunctionSidesunsafe fn from_value_optional(value: &Value) -> Option<Self>[src]
unsafe fn from_value_optional(value: &Value) -> Option<Self>impl<'a> FromValue<'a> for JunctionSides[src]
impl<'a> FromValue<'a> for JunctionSidesunsafe fn from_value(value: &Value) -> Self[src]
unsafe fn from_value(value: &Value) -> Selfimpl SetValue for JunctionSides[src]
impl SetValue for JunctionSidesAuto Trait Implementations
impl Send for JunctionSides
impl Send for JunctionSidesimpl Sync for JunctionSides
impl Sync for JunctionSides