pub enum ResizingEdge {
Left,
Right,
Top,
Bottom,
TopLeft,
TopRight,
BottomLeft,
BottomRight,
}Expand description
An moving edge of window when resizing.
Variants§
Trait Implementations§
Source§impl Clone for ResizingEdge
impl Clone for ResizingEdge
Source§fn clone(&self) -> ResizingEdge
fn clone(&self) -> ResizingEdge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResizingEdge
Source§impl Debug for ResizingEdge
impl Debug for ResizingEdge
impl Eq for ResizingEdge
Source§impl PartialEq for ResizingEdge
impl PartialEq for ResizingEdge
Source§fn eq(&self, other: &ResizingEdge) -> bool
fn eq(&self, other: &ResizingEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResizingEdge
Auto Trait Implementations§
impl Freeze for ResizingEdge
impl RefUnwindSafe for ResizingEdge
impl Send for ResizingEdge
impl Sync for ResizingEdge
impl Unpin for ResizingEdge
impl UnsafeUnpin for ResizingEdge
impl UnwindSafe for ResizingEdge
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more