pub enum EndEffectorKind {
Gripper,
VacuumGripper,
Welder,
Cutter,
Drill,
Nozzle,
SuctionCup,
ToolChanger,
Unknown,
Custom(String),
}Expand description
Descriptive end-effector kind vocabulary.
Variants§
Gripper
Gripper end effector.
VacuumGripper
Vacuum gripper end effector.
Welder
Welder tool.
Cutter
Cutter tool.
Drill
Drill tool.
Nozzle
Nozzle tool.
SuctionCup
Suction cup end effector.
ToolChanger
Tool changer end effector.
Unknown
Unknown end-effector kind.
Custom(String)
Caller-defined end-effector kind text.
Trait Implementations§
Source§impl Clone for EndEffectorKind
impl Clone for EndEffectorKind
Source§fn clone(&self) -> EndEffectorKind
fn clone(&self) -> EndEffectorKind
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 moreSource§impl Debug for EndEffectorKind
impl Debug for EndEffectorKind
Source§impl Display for EndEffectorKind
impl Display for EndEffectorKind
Source§impl FromStr for EndEffectorKind
impl FromStr for EndEffectorKind
Source§impl Hash for EndEffectorKind
impl Hash for EndEffectorKind
Source§impl Ord for EndEffectorKind
impl Ord for EndEffectorKind
Source§fn cmp(&self, other: &EndEffectorKind) -> Ordering
fn cmp(&self, other: &EndEffectorKind) -> 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 EndEffectorKind
impl PartialEq for EndEffectorKind
Source§fn eq(&self, other: &EndEffectorKind) -> bool
fn eq(&self, other: &EndEffectorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EndEffectorKind
impl PartialOrd for EndEffectorKind
impl Eq for EndEffectorKind
impl StructuralPartialEq for EndEffectorKind
Auto Trait Implementations§
impl Freeze for EndEffectorKind
impl RefUnwindSafe for EndEffectorKind
impl Send for EndEffectorKind
impl Sync for EndEffectorKind
impl Unpin for EndEffectorKind
impl UnsafeUnpin for EndEffectorKind
impl UnwindSafe for EndEffectorKind
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