Struct gtk::AccelFlags
source · [−]pub struct AccelFlags { /* private fields */ }Implementations
sourceimpl AccelFlags
impl AccelFlags
pub const VISIBLE: AccelFlags = _
pub const LOCKED: AccelFlags = _
pub const MASK: AccelFlags = _
sourcepub const fn empty() -> AccelFlags
pub const fn empty() -> AccelFlags
Returns an empty set of flags
sourcepub const fn all() -> AccelFlags
pub const fn all() -> AccelFlags
Returns the set containing all flags.
sourcepub fn from_bits(bits: u32) -> Option<AccelFlags>
pub fn from_bits(bits: u32) -> Option<AccelFlags>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u32) -> AccelFlags
pub const fn from_bits_truncate(bits: u32) -> AccelFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u32) -> AccelFlags
pub const unsafe fn from_bits_unchecked(bits: u32) -> AccelFlags
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
sourcepub const fn intersects(&self, other: AccelFlags) -> bool
pub const fn intersects(&self, other: AccelFlags) -> bool
Returns true if there are flags common to both self and other.
sourcepub const fn contains(&self, other: AccelFlags) -> bool
pub const fn contains(&self, other: AccelFlags) -> bool
Returns true all of the flags in other are contained within self.
sourcepub fn insert(&mut self, other: AccelFlags)
pub fn insert(&mut self, other: AccelFlags)
Inserts the specified flags in-place.
sourcepub fn remove(&mut self, other: AccelFlags)
pub fn remove(&mut self, other: AccelFlags)
Removes the specified flags in-place.
sourcepub fn toggle(&mut self, other: AccelFlags)
pub fn toggle(&mut self, other: AccelFlags)
Toggles the specified flags in-place.
sourcepub fn set(&mut self, other: AccelFlags, value: bool)
pub fn set(&mut self, other: AccelFlags, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
sourceimpl Binary for AccelFlags
impl Binary for AccelFlags
sourceimpl BitAnd<AccelFlags> for AccelFlags
impl BitAnd<AccelFlags> for AccelFlags
sourcefn bitand(self, other: AccelFlags) -> AccelFlags
fn bitand(self, other: AccelFlags) -> AccelFlags
Returns the intersection between the two sets of flags.
type Output = AccelFlags
type Output = AccelFlags
& operator.sourceimpl BitAndAssign<AccelFlags> for AccelFlags
impl BitAndAssign<AccelFlags> for AccelFlags
sourcefn bitand_assign(&mut self, other: AccelFlags)
fn bitand_assign(&mut self, other: AccelFlags)
Disables all flags disabled in the set.
sourceimpl BitOr<AccelFlags> for AccelFlags
impl BitOr<AccelFlags> for AccelFlags
sourcefn bitor(self, other: AccelFlags) -> AccelFlags
fn bitor(self, other: AccelFlags) -> AccelFlags
Returns the union of the two sets of flags.
type Output = AccelFlags
type Output = AccelFlags
| operator.sourceimpl BitOrAssign<AccelFlags> for AccelFlags
impl BitOrAssign<AccelFlags> for AccelFlags
sourcefn bitor_assign(&mut self, other: AccelFlags)
fn bitor_assign(&mut self, other: AccelFlags)
Adds the set of flags.
sourceimpl BitXor<AccelFlags> for AccelFlags
impl BitXor<AccelFlags> for AccelFlags
sourcefn bitxor(self, other: AccelFlags) -> AccelFlags
fn bitxor(self, other: AccelFlags) -> AccelFlags
Returns the left flags, but with all the right flags toggled.
type Output = AccelFlags
type Output = AccelFlags
^ operator.sourceimpl BitXorAssign<AccelFlags> for AccelFlags
impl BitXorAssign<AccelFlags> for AccelFlags
sourcefn bitxor_assign(&mut self, other: AccelFlags)
fn bitxor_assign(&mut self, other: AccelFlags)
Toggles the set of flags.
sourceimpl Clone for AccelFlags
impl Clone for AccelFlags
sourcefn clone(&self) -> AccelFlags
fn clone(&self) -> AccelFlags
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl Debug for AccelFlags
impl Debug for AccelFlags
sourceimpl Extend<AccelFlags> for AccelFlags
impl Extend<AccelFlags> for AccelFlags
sourcefn extend<T: IntoIterator<Item = AccelFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = AccelFlags>>(&mut self, iterator: T)
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)sourceimpl FromIterator<AccelFlags> for AccelFlags
impl FromIterator<AccelFlags> for AccelFlags
sourcefn from_iter<T: IntoIterator<Item = AccelFlags>>(iterator: T) -> AccelFlags
fn from_iter<T: IntoIterator<Item = AccelFlags>>(iterator: T) -> AccelFlags
sourceimpl<'a> FromValue<'a> for AccelFlags
impl<'a> FromValue<'a> for AccelFlags
unsafe fn from_value(value: &Value) -> Self
sourceimpl<'a> FromValueOptional<'a> for AccelFlags
impl<'a> FromValueOptional<'a> for AccelFlags
unsafe fn from_value_optional(value: &Value) -> Option<Self>
sourceimpl Hash for AccelFlags
impl Hash for AccelFlags
sourceimpl LowerHex for AccelFlags
impl LowerHex for AccelFlags
sourceimpl Not for AccelFlags
impl Not for AccelFlags
sourcefn not(self) -> AccelFlags
fn not(self) -> AccelFlags
Returns the complement of this set of flags.
type Output = AccelFlags
type Output = AccelFlags
! operator.sourceimpl Octal for AccelFlags
impl Octal for AccelFlags
sourceimpl Ord for AccelFlags
impl Ord for AccelFlags
sourcefn cmp(&self, other: &AccelFlags) -> Ordering
fn cmp(&self, other: &AccelFlags) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialEq<AccelFlags> for AccelFlags
impl PartialEq<AccelFlags> for AccelFlags
sourcefn eq(&self, other: &AccelFlags) -> bool
fn eq(&self, other: &AccelFlags) -> bool
sourceimpl PartialOrd<AccelFlags> for AccelFlags
impl PartialOrd<AccelFlags> for AccelFlags
sourcefn partial_cmp(&self, other: &AccelFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &AccelFlags) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moresourceimpl StaticType for AccelFlags
impl StaticType for AccelFlags
sourcefn static_type() -> Type
fn static_type() -> Type
Self.sourceimpl Sub<AccelFlags> for AccelFlags
impl Sub<AccelFlags> for AccelFlags
sourcefn sub(self, other: AccelFlags) -> AccelFlags
fn sub(self, other: AccelFlags) -> AccelFlags
Returns the set difference of the two sets of flags.
type Output = AccelFlags
type Output = AccelFlags
- operator.sourceimpl SubAssign<AccelFlags> for AccelFlags
impl SubAssign<AccelFlags> for AccelFlags
sourcefn sub_assign(&mut self, other: AccelFlags)
fn sub_assign(&mut self, other: AccelFlags)
Disables all flags enabled in the set.
sourceimpl UpperHex for AccelFlags
impl UpperHex for AccelFlags
impl Copy for AccelFlags
impl Eq for AccelFlags
impl StructuralEq for AccelFlags
impl StructuralPartialEq for AccelFlags
Auto Trait Implementations
impl RefUnwindSafe for AccelFlags
impl Send for AccelFlags
impl Sync for AccelFlags
impl Unpin for AccelFlags
impl UnwindSafe for AccelFlags
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<T> ToSendValue for Twhere
T: SetValue + Send + ToValue + ?Sized,
impl<T> ToSendValue for Twhere
T: SetValue + Send + ToValue + ?Sized,
sourcefn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue clone of self.