pub enum JointKind {
Revolute,
Prismatic,
Fixed,
Continuous,
Spherical,
Planar,
Floating,
Unknown,
Custom(String),
}Expand description
Descriptive robot joint vocabulary.
Variants§
Revolute
Revolute joint.
Prismatic
Prismatic joint.
Fixed
Fixed joint.
Continuous
Continuous joint.
Spherical
Spherical joint.
Planar
Planar joint.
Floating
Floating joint.
Unknown
Unknown joint kind.
Custom(String)
Caller-defined joint kind text.
Trait Implementations§
Source§impl Ord for JointKind
impl Ord for JointKind
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 JointKind
impl PartialOrd for JointKind
impl Eq for JointKind
impl StructuralPartialEq for JointKind
Auto Trait Implementations§
impl Freeze for JointKind
impl RefUnwindSafe for JointKind
impl Send for JointKind
impl Sync for JointKind
impl Unpin for JointKind
impl UnsafeUnpin for JointKind
impl UnwindSafe for JointKind
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