pub enum SizingSide {
Left,
Right,
Top,
Bottom,
TopLeft,
TopRight,
BottomLeft,
BottomRight,
MoveCauseExitMaximize,
Unknown(usize),
}Variants§
Trait Implementations§
Source§impl Clone for SizingSide
impl Clone for SizingSide
Source§fn clone(&self) -> SizingSide
fn clone(&self) -> SizingSide
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 moreSource§impl Debug for SizingSide
impl Debug for SizingSide
Source§impl Hash for SizingSide
impl Hash for SizingSide
Source§impl Ord for SizingSide
impl Ord for SizingSide
Source§fn cmp(&self, other: &SizingSide) -> Ordering
fn cmp(&self, other: &SizingSide) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SizingSide
impl PartialEq for SizingSide
Source§fn eq(&self, other: &SizingSide) -> bool
fn eq(&self, other: &SizingSide) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SizingSide
impl PartialOrd for SizingSide
impl Copy for SizingSide
impl Eq for SizingSide
impl StructuralPartialEq for SizingSide
Auto Trait Implementations§
impl Freeze for SizingSide
impl RefUnwindSafe for SizingSide
impl Send for SizingSide
impl Sync for SizingSide
impl Unpin for SizingSide
impl UnsafeUnpin for SizingSide
impl UnwindSafe for SizingSide
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