Struct wayland_client::protocol::wl_shell_surface::Resize [−]
pub struct Resize { /* fields omitted */ }edge values for resizing
These values are used to indicate which edge of a surface is being dragged in a resize operation. The server may use this information to adapt its behavior, e.g. choose an appropriate cursor image.
Methods
impl Resize
impl Resizepub const None: Resize
None: Resize = Resize{bits: 0,}
no edge
pub const Top: Resize
Top: Resize = Resize{bits: 1,}
top edge
pub const Bottom: Resize
Bottom: Resize = Resize{bits: 2,}
bottom edge
pub const Left: Resize
Left: Resize = Resize{bits: 4,}
left edge
pub const TopLeft: Resize
TopLeft: Resize = Resize{bits: 5,}
top and left edges
pub const BottomLeft: Resize
BottomLeft: Resize = Resize{bits: 6,}
bottom and left edges
pub const Right: Resize
Right: Resize = Resize{bits: 8,}
right edge
pub const TopRight: Resize
TopRight: Resize = Resize{bits: 9,}
top and right edges
pub const BottomRight: Resize
BottomRight: Resize = Resize{bits: 10,}
bottom and right edges
pub fn empty() -> Resize
pub fn empty() -> ResizeReturns an empty set of flags.
pub fn all() -> Resize
pub fn all() -> ResizeReturns 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<Resize>
pub fn from_bits(bits: u32) -> Option<Resize>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> Resize
pub fn from_bits_truncate(bits: u32) -> ResizeConvert 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: Resize) -> bool
pub fn intersects(&self, other: Resize) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: Resize) -> bool
pub fn contains(&self, other: Resize) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: Resize)
pub fn insert(&mut self, other: Resize)Inserts the specified flags in-place.
pub fn remove(&mut self, other: Resize)
pub fn remove(&mut self, other: Resize)Removes the specified flags in-place.
pub fn toggle(&mut self, other: Resize)
pub fn toggle(&mut self, other: Resize)Toggles the specified flags in-place.
pub fn set(&mut self, other: Resize, value: bool)
pub fn set(&mut self, other: Resize, value: bool)Inserts or removes the specified flags depending on the passed value.
impl Resize[src]
impl ResizeTrait Implementations
impl Copy for Resize
impl Copy for Resizeimpl PartialEq for Resize
impl PartialEq for Resizefn eq(&self, other: &Resize) -> bool
fn eq(&self, other: &Resize) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Resize) -> bool
fn ne(&self, other: &Resize) -> boolThis method tests for !=.
impl Eq for Resize
impl Eq for Resizeimpl Clone for Resize
impl Clone for Resizefn clone(&self) -> Resize
fn clone(&self) -> ResizeReturns 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 Resize
impl PartialOrd for Resizefn partial_cmp(&self, other: &Resize) -> Option<Ordering>
fn partial_cmp(&self, other: &Resize) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Resize) -> bool
fn lt(&self, other: &Resize) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Resize) -> bool
fn le(&self, other: &Resize) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Resize) -> bool
fn gt(&self, other: &Resize) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Resize) -> bool
fn ge(&self, other: &Resize) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Resize
impl Ord for Resizefn cmp(&self, other: &Resize) -> Ordering
fn cmp(&self, other: &Resize) -> 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 Resize
impl Hash for Resizefn 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 Resize
impl Debug for Resizeimpl Binary for Resize
impl Binary for Resizeimpl Octal for Resize
impl Octal for Resizeimpl LowerHex for Resize
impl LowerHex for Resizeimpl UpperHex for Resize
impl UpperHex for Resizeimpl BitOr for Resize
impl BitOr for Resizetype Output = Resize
The resulting type after applying the | operator.
fn bitor(self, other: Resize) -> Resize
fn bitor(self, other: Resize) -> ResizeReturns the union of the two sets of flags.
impl BitOrAssign for Resize
impl BitOrAssign for Resizefn bitor_assign(&mut self, other: Resize)
fn bitor_assign(&mut self, other: Resize)Adds the set of flags.
impl BitXor for Resize
impl BitXor for Resizetype Output = Resize
The resulting type after applying the ^ operator.
fn bitxor(self, other: Resize) -> Resize
fn bitxor(self, other: Resize) -> ResizeReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for Resize
impl BitXorAssign for Resizefn bitxor_assign(&mut self, other: Resize)
fn bitxor_assign(&mut self, other: Resize)Toggles the set of flags.
impl BitAnd for Resize
impl BitAnd for Resizetype Output = Resize
The resulting type after applying the & operator.
fn bitand(self, other: Resize) -> Resize
fn bitand(self, other: Resize) -> ResizeReturns the intersection between the two sets of flags.
impl BitAndAssign for Resize
impl BitAndAssign for Resizefn bitand_assign(&mut self, other: Resize)
fn bitand_assign(&mut self, other: Resize)Disables all flags disabled in the set.
impl Sub for Resize
impl Sub for Resizetype Output = Resize
The resulting type after applying the - operator.
fn sub(self, other: Resize) -> Resize
fn sub(self, other: Resize) -> ResizeReturns the set difference of the two sets of flags.
impl SubAssign for Resize
impl SubAssign for Resizefn sub_assign(&mut self, other: Resize)
fn sub_assign(&mut self, other: Resize)Disables all flags enabled in the set.
impl Not for Resize
impl Not for Resizetype Output = Resize
The resulting type after applying the ! operator.
fn not(self) -> Resize
fn not(self) -> ResizeReturns the complement of this set of flags.
impl Extend<Resize> for Resize
impl Extend<Resize> for Resizefn extend<T: IntoIterator<Item = Resize>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Resize>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<Resize> for Resize
impl FromIterator<Resize> for Resizefn from_iter<T: IntoIterator<Item = Resize>>(iterator: T) -> Resize
fn from_iter<T: IntoIterator<Item = Resize>>(iterator: T) -> ResizeCreates a value from an iterator. Read more