pub enum SourceAxisV1 {
PositiveX,
NegativeX,
PositiveY,
NegativeY,
PositiveZ,
NegativeZ,
}Expand description
Signed coordinate axis used by a source basis.
Variants§
PositiveX
Positive X.
NegativeX
Negative X.
PositiveY
Positive Y.
NegativeY
Negative Y.
PositiveZ
Positive Z.
NegativeZ
Negative Z.
Trait Implementations§
Source§impl Clone for SourceAxisV1
impl Clone for SourceAxisV1
Source§fn clone(&self) -> SourceAxisV1
fn clone(&self) -> SourceAxisV1
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 SourceAxisV1
Source§impl Debug for SourceAxisV1
impl Debug for SourceAxisV1
impl Eq for SourceAxisV1
Source§impl From<SourceAxisV1> for RawSourceAxisV1
impl From<SourceAxisV1> for RawSourceAxisV1
Source§fn from(value: SourceAxisV1) -> Self
fn from(value: SourceAxisV1) -> Self
Converts to this type from the input type.
Source§impl Ord for SourceAxisV1
impl Ord for SourceAxisV1
Source§fn cmp(&self, other: &SourceAxisV1) -> Ordering
fn cmp(&self, other: &SourceAxisV1) -> Ordering
1.21.0 (const: unstable) · 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 SourceAxisV1
impl PartialEq for SourceAxisV1
Source§impl PartialOrd for SourceAxisV1
impl PartialOrd for SourceAxisV1
impl StructuralPartialEq for SourceAxisV1
Auto Trait Implementations§
impl Freeze for SourceAxisV1
impl RefUnwindSafe for SourceAxisV1
impl Send for SourceAxisV1
impl Sync for SourceAxisV1
impl Unpin for SourceAxisV1
impl UnsafeUnpin for SourceAxisV1
impl UnwindSafe for SourceAxisV1
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