Enum libreda_db::prelude::Direction2D
source · [−]pub enum Direction2D {
Left,
Up,
Right,
Down,
}
Expand description
Directions along the coordinate axes in two dimensions.
Variants
Left
Positive x direction.
Up
Positive y direction.
Right
Negative x direction.
Down
Negative y direction.
Implementations
sourceimpl Direction2D
impl Direction2D
sourcepub fn reversed(self) -> Direction2D
pub fn reversed(self) -> Direction2D
Get the opposite direction.
sourcepub fn orientation(&self) -> Orientation2D
pub fn orientation(&self) -> Orientation2D
Get the orientation of this direction.
Trait Implementations
sourceimpl Clone for Direction2D
impl Clone for Direction2D
sourcefn clone(&self) -> Direction2D
fn clone(&self) -> Direction2D
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Direction2D
impl Debug for Direction2D
sourceimpl<'de> Deserialize<'de> for Direction2D
impl<'de> Deserialize<'de> for Direction2D
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Direction2D, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Direction2D, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<Direction2D> for Direction1D
impl From<Direction2D> for Direction1D
sourcefn from(d2: Direction2D) -> Direction1D
fn from(d2: Direction2D) -> Direction1D
Downcast 2D direction to 1D direction by preserving the sign.
sourceimpl Hash for Direction2D
impl Hash for Direction2D
sourceimpl Ord for Direction2D
impl Ord for Direction2D
sourcefn cmp(&self, other: &Direction2D) -> Ordering
fn cmp(&self, other: &Direction2D) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<Direction2D> for Direction2D
impl PartialEq<Direction2D> for Direction2D
sourceimpl PartialOrd<Direction2D> for Direction2D
impl PartialOrd<Direction2D> for Direction2D
sourcefn partial_cmp(&self, other: &Direction2D) -> Option<Ordering>
fn partial_cmp(&self, other: &Direction2D) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for Direction2D
impl Serialize for Direction2D
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Direction2D
impl Eq for Direction2D
impl StructuralEq for Direction2D
impl StructuralPartialEq for Direction2D
Auto Trait Implementations
impl RefUnwindSafe for Direction2D
impl Send for Direction2D
impl Sync for Direction2D
impl Unpin for Direction2D
impl UnwindSafe for Direction2D
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more