Enum libreda_db::prelude::Orientation2D
pub enum Orientation2D {
Horizontal,
Vertical,
}
Expand description
Orientation in two dimensions along one of the axes.
Variants§
Implementations§
§impl Orientation2D
impl Orientation2D
pub fn other(self) -> Orientation2D
pub fn other(self) -> Orientation2D
Get the orthogonal orientation.
pub fn direction(self, d1: Direction1D) -> Direction2D
pub fn direction(self, d1: Direction1D) -> Direction2D
Get the positive or negative direction aligned with this orientation.
pub fn is_vertical(&self) -> bool
pub fn is_vertical(&self) -> bool
Check if orientation is vertical.
pub fn is_horizontal(&self) -> bool
pub fn is_horizontal(&self) -> bool
Check if orientation is horizontal.
Trait Implementations§
§impl Clone for Orientation2D
impl Clone for Orientation2D
§fn clone(&self) -> Orientation2D
fn clone(&self) -> Orientation2D
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 more§impl Debug for Orientation2D
impl Debug for Orientation2D
§impl<'de> Deserialize<'de> for Orientation2D
impl<'de> Deserialize<'de> for Orientation2D
§fn deserialize<__D>(
__deserializer: __D
) -> Result<Orientation2D, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<Orientation2D, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Hash for Orientation2D
impl Hash for Orientation2D
§impl Ord for Orientation2D
impl Ord for Orientation2D
§impl PartialEq<Orientation2D> for Orientation2D
impl PartialEq<Orientation2D> for Orientation2D
§fn eq(&self, other: &Orientation2D) -> bool
fn eq(&self, other: &Orientation2D) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd<Orientation2D> for Orientation2D
impl PartialOrd<Orientation2D> for Orientation2D
§fn partial_cmp(&self, other: &Orientation2D) -> Option<Ordering>
fn partial_cmp(&self, other: &Orientation2D) -> 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§impl Serialize for Orientation2D
impl Serialize for Orientation2D
§fn 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