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 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 RelativeDir
Source§impl Debug for RelativeDir
impl Debug for RelativeDir
impl Eq 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 (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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for RelativeDir
impl PartialEq for RelativeDir
Source§impl PartialOrd for RelativeDir
impl PartialOrd 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more