[−]Struct gdk::WindowHints
Methods
impl WindowHints
pub const POS: WindowHints
pub const MIN_SIZE: WindowHints
pub const MAX_SIZE: WindowHints
pub const BASE_SIZE: WindowHints
pub const ASPECT: WindowHints
pub const RESIZE_INC: WindowHints
pub const WIN_GRAVITY: WindowHints
pub const USER_POS: WindowHints
pub const USER_SIZE: WindowHints
pub fn empty() -> WindowHints
Returns an empty set of flags.
pub fn all() -> WindowHints
Returns the set containing all flags.
pub fn bits(&self) -> u32
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<WindowHints>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> WindowHints
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
Returns true
if no flags are currently stored.
pub fn is_all(&self) -> bool
Returns true
if all flags are currently set.
pub fn intersects(&self, other: WindowHints) -> bool
Returns true
if there are flags common to both self
and other
.
pub fn contains(&self, other: WindowHints) -> bool
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: WindowHints)
Inserts the specified flags in-place.
pub fn remove(&mut self, other: WindowHints)
Removes the specified flags in-place.
pub fn toggle(&mut self, other: WindowHints)
Toggles the specified flags in-place.
pub fn set(&mut self, other: WindowHints, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Extend<WindowHints> for WindowHints
fn extend<T: IntoIterator<Item = WindowHints>>(&mut self, iterator: T)
impl Clone for WindowHints
fn clone(&self) -> WindowHints
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for WindowHints
impl Eq for WindowHints
impl Ord for WindowHints
fn cmp(&self, other: &WindowHints) -> Ordering
fn max(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<WindowHints> for WindowHints
fn eq(&self, other: &WindowHints) -> bool
fn ne(&self, other: &WindowHints) -> bool
impl PartialOrd<WindowHints> for WindowHints
fn partial_cmp(&self, other: &WindowHints) -> Option<Ordering>
fn lt(&self, other: &WindowHints) -> bool
fn le(&self, other: &WindowHints) -> bool
fn gt(&self, other: &WindowHints) -> bool
fn ge(&self, other: &WindowHints) -> bool
impl Debug for WindowHints
impl Sub<WindowHints> for WindowHints
type Output = WindowHints
The resulting type after applying the -
operator.
fn sub(self, other: WindowHints) -> WindowHints
Returns the set difference of the two sets of flags.
impl SubAssign<WindowHints> for WindowHints
fn sub_assign(&mut self, other: WindowHints)
Disables all flags enabled in the set.
impl Not for WindowHints
type Output = WindowHints
The resulting type after applying the !
operator.
fn not(self) -> WindowHints
Returns the complement of this set of flags.
impl BitAnd<WindowHints> for WindowHints
type Output = WindowHints
The resulting type after applying the &
operator.
fn bitand(self, other: WindowHints) -> WindowHints
Returns the intersection between the two sets of flags.
impl BitOr<WindowHints> for WindowHints
type Output = WindowHints
The resulting type after applying the |
operator.
fn bitor(self, other: WindowHints) -> WindowHints
Returns the union of the two sets of flags.
impl BitXor<WindowHints> for WindowHints
type Output = WindowHints
The resulting type after applying the ^
operator.
fn bitxor(self, other: WindowHints) -> WindowHints
Returns the left flags, but with all the right flags toggled.
impl BitAndAssign<WindowHints> for WindowHints
fn bitand_assign(&mut self, other: WindowHints)
Disables all flags disabled in the set.
impl BitOrAssign<WindowHints> for WindowHints
fn bitor_assign(&mut self, other: WindowHints)
Adds the set of flags.
impl BitXorAssign<WindowHints> for WindowHints
fn bitxor_assign(&mut self, other: WindowHints)
Toggles the set of flags.
impl Hash for WindowHints
fn hash<__H: Hasher>(&self, state: &mut __H)
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl StructuralPartialEq for WindowHints
impl StructuralEq for WindowHints
impl FromIterator<WindowHints> for WindowHints
fn from_iter<T: IntoIterator<Item = WindowHints>>(iterator: T) -> WindowHints
impl Octal for WindowHints
impl Binary for WindowHints
impl LowerHex for WindowHints
impl UpperHex for WindowHints
impl StaticType for WindowHints
[src]
fn static_type() -> Type
[src]
impl<'a> FromValue<'a> for WindowHints
[src]
unsafe fn from_value(value: &Value) -> Self
[src]
impl<'a> FromValueOptional<'a> for WindowHints
[src]
unsafe fn from_value_optional(value: &Value) -> Option<Self>
[src]
impl SetValue for WindowHints
[src]
Auto Trait Implementations
impl Send for WindowHints
impl Sync for WindowHints
impl Unpin for WindowHints
impl UnwindSafe for WindowHints
impl RefUnwindSafe for WindowHints
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> ToValue for T where
T: SetValue + ?Sized,
[src]
T: SetValue + ?Sized,
impl<T> ToSendValue for T where
T: ToValue + SetValue + Send + ?Sized,
[src]
T: ToValue + SetValue + Send + ?Sized,