pub enum Orientation2D {
Horizontal,
Vertical,
}
Expand description
Orientation in two dimensions along one of the axes.
Variants§
Implementations§
Source§impl Orientation2D
impl Orientation2D
Sourcepub fn other(self) -> Orientation2D
pub fn other(self) -> Orientation2D
Get the orthogonal orientation.
Sourcepub fn direction(self, d1: Direction1D) -> Direction2D
pub fn direction(self, d1: Direction1D) -> Direction2D
Get the positive or negative direction aligned with this orientation.
Sourcepub fn is_vertical(&self) -> bool
pub fn is_vertical(&self) -> bool
Check if orientation is vertical.
Sourcepub fn is_horizontal(&self) -> bool
pub fn is_horizontal(&self) -> bool
Check if orientation is horizontal.
Trait Implementations§
Source§impl Clone for Orientation2D
impl Clone for Orientation2D
Source§fn clone(&self) -> Orientation2D
fn clone(&self) -> Orientation2D
Returns a duplicate 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 Orientation2D
impl Debug for Orientation2D
Source§impl<'de> Deserialize<'de> for Orientation2D
impl<'de> Deserialize<'de> for Orientation2D
Source§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
Source§impl Hash for Orientation2D
impl Hash for Orientation2D
Source§impl Ord for Orientation2D
impl Ord for Orientation2D
Source§fn cmp(&self, other: &Orientation2D) -> Ordering
fn cmp(&self, other: &Orientation2D) -> 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 Orientation2D
impl PartialEq for Orientation2D
Source§impl PartialOrd for Orientation2D
impl PartialOrd for Orientation2D
Source§impl Serialize for Orientation2D
impl Serialize for Orientation2D
Source§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
impl Copy for Orientation2D
impl Eq for Orientation2D
impl StructuralPartialEq for Orientation2D
Auto Trait Implementations§
impl Freeze for Orientation2D
impl RefUnwindSafe for Orientation2D
impl Send for Orientation2D
impl Sync for Orientation2D
impl Unpin for Orientation2D
impl UnwindSafe for Orientation2D
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