Enum libreda_db::layout::prelude::Direction1D
source · pub enum Direction1D {
Low,
High,
}Expand description
Direction in one dimension.
Variants§
Implementations§
source§impl Direction1D
impl Direction1D
Trait Implementations§
source§impl Clone for Direction1D
impl Clone for Direction1D
source§fn clone(&self) -> Direction1D
fn clone(&self) -> Direction1D
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 Direction1D
impl Debug for Direction1D
source§impl<'de> Deserialize<'de> for Direction1D
impl<'de> Deserialize<'de> for Direction1D
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<Direction1D, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Direction1D, <__D as Deserializer<'de>>::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) -> Direction1D
fn from(d2: Direction2D) -> Direction1D
Downcast 2D direction to 1D direction by preserving the sign.
source§impl Hash for Direction1D
impl Hash for Direction1D
source§impl Ord for Direction1D
impl Ord for Direction1D
source§fn cmp(&self, other: &Direction1D) -> Ordering
fn cmp(&self, other: &Direction1D) -> 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 Direction1D
impl PartialEq for Direction1D
source§fn eq(&self, other: &Direction1D) -> bool
fn eq(&self, other: &Direction1D) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for Direction1D
impl PartialOrd for Direction1D
source§fn partial_cmp(&self, other: &Direction1D) -> Option<Ordering>
fn partial_cmp(&self, other: &Direction1D) -> 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 moresource§impl Serialize for Direction1D
impl Serialize for Direction1D
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 Direction1D
impl Eq for Direction1D
impl StructuralPartialEq for Direction1D
Auto Trait Implementations§
impl Freeze for Direction1D
impl RefUnwindSafe for Direction1D
impl Send for Direction1D
impl Sync for Direction1D
impl Unpin for Direction1D
impl UnwindSafe for Direction1D
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> 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