pub enum URDFJointType {
Fixed,
Revolute {
axis: (f64, f64, f64),
},
Prismatic {
axis: (f64, f64, f64),
},
}Expand description
Kind of URDF joint. Fixed joints have no motion; revolute and prismatic
joints move along axis (expressed in the joint’s own frame, as per the
URDF spec).
Variants§
Trait Implementations§
Source§impl Clone for URDFJointType
impl Clone for URDFJointType
Source§fn clone(&self) -> URDFJointType
fn clone(&self) -> URDFJointType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for URDFJointType
impl Debug for URDFJointType
Source§impl PartialEq for URDFJointType
impl PartialEq for URDFJointType
impl Copy for URDFJointType
impl StructuralPartialEq for URDFJointType
Auto Trait Implementations§
impl Freeze for URDFJointType
impl RefUnwindSafe for URDFJointType
impl Send for URDFJointType
impl Sync for URDFJointType
impl Unpin for URDFJointType
impl UnsafeUnpin for URDFJointType
impl UnwindSafe for URDFJointType
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