Enum wayland_protocols::unstable::xdg_shell::v5::client::xdg_surface::ResizeEdge [−][src]
#[repr(u32)]
#[non_exhaustive]
pub enum ResizeEdge {
None,
Top,
Bottom,
Left,
TopLeft,
BottomLeft,
Right,
TopRight,
BottomRight,
}
Expand description
edge values for resizing
These values are used to indicate which edge of a surface is being dragged in a resize operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
Top
Bottom
Left
TopLeft
BottomLeft
Right
TopRight
BottomRight
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ResizeEdge
impl Send for ResizeEdge
impl Sync for ResizeEdge
impl Unpin for ResizeEdge
impl UnwindSafe for ResizeEdge
Blanket Implementations
Mutably borrows from an owned value. Read more