pub enum RelativeDir {
Top,
TopRight,
Right,
BottomRight,
Bottom,
BottomLeft,
Left,
TopLeft,
}
Expand description
Describes the relative position of the object.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RelativeDir
impl Clone for RelativeDir
Source§fn clone(&self) -> RelativeDir
fn clone(&self) -> RelativeDir
Returns a copy of the value. Read more
1.0.0 · 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 RelativeDir
impl Debug for RelativeDir
Source§impl Hash for RelativeDir
impl Hash for RelativeDir
Source§impl Ord for RelativeDir
impl Ord for RelativeDir
Source§fn cmp(&self, other: &RelativeDir) -> Ordering
fn cmp(&self, other: &RelativeDir) -> Ordering
1.21.0 · 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 RelativeDir
impl PartialEq for RelativeDir
Source§impl PartialOrd for RelativeDir
impl PartialOrd for RelativeDir
impl Copy for RelativeDir
impl Eq for RelativeDir
impl StructuralPartialEq for RelativeDir
Auto Trait Implementations§
impl Freeze for RelativeDir
impl RefUnwindSafe for RelativeDir
impl Send for RelativeDir
impl Sync for RelativeDir
impl Unpin for RelativeDir
impl UnwindSafe for RelativeDir
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