pub enum JointAxis {
X,
Y,
Z,
Unknown,
Custom(String),
}Expand description
Descriptive joint axis labels.
Variants§
X
X axis label.
Y
Y axis label.
Z
Z axis label.
Unknown
Unknown axis label.
Custom(String)
Caller-defined axis label.
Trait Implementations§
Source§impl Ord for JointAxis
impl Ord for JointAxis
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 PartialOrd for JointAxis
impl PartialOrd for JointAxis
impl Eq for JointAxis
impl StructuralPartialEq for JointAxis
Auto Trait Implementations§
impl Freeze for JointAxis
impl RefUnwindSafe for JointAxis
impl Send for JointAxis
impl Sync for JointAxis
impl Unpin for JointAxis
impl UnsafeUnpin for JointAxis
impl UnwindSafe for JointAxis
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