Enum iron_shapes::isotropy::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§
source§impl Direction2D
impl Direction2D
sourcepub fn orientation(&self) -> Orientation2D
pub fn orientation(&self) -> Orientation2D
Get the orientation of this direction.
Trait Implementations§
source§impl Clone for Direction2D
impl Clone for Direction2D
source§fn clone(&self) -> Direction2D
fn clone(&self) -> Direction2D
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 Direction2D
impl Debug for Direction2D
source§impl<'de> Deserialize<'de> for Direction2D
impl<'de> Deserialize<'de> for Direction2D
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<Direction2D> for Direction1D
impl From<Direction2D> for Direction1D
source§fn from(d2: Direction2D) -> Self
fn from(d2: Direction2D) -> Self
Downcast 2D direction to 1D direction by preserving the sign.
source§impl Hash for Direction2D
impl Hash for Direction2D
source§impl Ord for Direction2D
impl Ord for Direction2D
source§fn cmp(&self, other: &Direction2D) -> Ordering
fn cmp(&self, other: &Direction2D) -> 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<Direction2D> for Direction2D
impl PartialEq<Direction2D> for Direction2D
source§fn eq(&self, other: &Direction2D) -> bool
fn eq(&self, other: &Direction2D) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<Direction2D> for Direction2D
impl PartialOrd<Direction2D> for Direction2D
source§fn partial_cmp(&self, other: &Direction2D) -> Option<Ordering>
fn partial_cmp(&self, other: &Direction2D) -> Option<Ordering>
1.0.0 · source§fn 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