pub enum AzimuthSense {
Clockwise,
CounterClockwise,
}Expand description
Direction in which azimuth increases.
Variants§
Clockwise
Azimuth grows clockwise when viewed from above (siderust default).
CounterClockwise
Azimuth grows counter-clockwise when viewed from above.
Trait Implementations§
Source§impl Clone for AzimuthSense
impl Clone for AzimuthSense
Source§fn clone(&self) -> AzimuthSense
fn clone(&self) -> AzimuthSense
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AzimuthSense
Source§impl Debug for AzimuthSense
impl Debug for AzimuthSense
impl Eq for AzimuthSense
Source§impl Hash for AzimuthSense
impl Hash for AzimuthSense
Source§impl PartialEq for AzimuthSense
impl PartialEq for AzimuthSense
Source§fn eq(&self, other: &AzimuthSense) -> bool
fn eq(&self, other: &AzimuthSense) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AzimuthSense
Auto Trait Implementations§
impl Freeze for AzimuthSense
impl RefUnwindSafe for AzimuthSense
impl Send for AzimuthSense
impl Sync for AzimuthSense
impl Unpin for AzimuthSense
impl UnsafeUnpin for AzimuthSense
impl UnwindSafe for AzimuthSense
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> UsingEngine for T
impl<T> UsingEngine for T
Source§fn using<'a, Ctx>(&'a self, engine: &'a Ctx) -> WithEngine<'a, Self, Ctx>where
Ctx: TransformContext,
fn using<'a, Ctx>(&'a self, engine: &'a Ctx) -> WithEngine<'a, Self, Ctx>where
Ctx: TransformContext,
Wrap this coordinate with a custom transform context for the next
transformation call.