Enum libreda_db::prelude::Direction1D
source · [−]pub enum Direction1D {
Low,
High,
}
Expand description
Direction in one dimension.
Variants
Low
Towards negative coordinates.
High
Towards positive coordinates.
Implementations
sourceimpl Direction1D
impl Direction1D
Trait Implementations
sourceimpl Clone for Direction1D
impl Clone for Direction1D
sourcefn clone(&self) -> Direction1D
fn clone(&self) -> Direction1D
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 Direction1D
impl Debug for Direction1D
sourceimpl<'de> Deserialize<'de> for Direction1D
impl<'de> Deserialize<'de> for Direction1D
sourcefn 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
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 Direction1D
impl Hash for Direction1D
sourceimpl Ord for Direction1D
impl Ord for Direction1D
sourcefn cmp(&self, other: &Direction1D) -> Ordering
fn cmp(&self, other: &Direction1D) -> 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<Direction1D> for Direction1D
impl PartialEq<Direction1D> for Direction1D
sourceimpl PartialOrd<Direction1D> for Direction1D
impl PartialOrd<Direction1D> for Direction1D
sourcefn partial_cmp(&self, other: &Direction1D) -> Option<Ordering>
fn partial_cmp(&self, other: &Direction1D) -> 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 Direction1D
impl Serialize for Direction1D
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 Direction1D
impl Eq for Direction1D
impl StructuralEq for Direction1D
impl StructuralPartialEq for Direction1D
Auto Trait Implementations
impl RefUnwindSafe for Direction1D
impl Send for Direction1D
impl Sync for Direction1D
impl Unpin for Direction1D
impl UnwindSafe for Direction1D
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