pub struct EndEffector {
pub effector_type: Option<String>,
pub pose: Option<Pose>,
pub target_pose: Option<Pose>,
pub velocity_mps: Option<f64>,
pub force_n: Option<f64>,
pub torque_nm: Option<f64>,
pub tcp_offset: Option<Position3D>,
}Expand description
End effector information.
Fields§
§effector_type: Option<String>End effector type
pose: Option<Pose>Current pose
target_pose: Option<Pose>Target pose
velocity_mps: Option<f64>Velocity (m/s)
force_n: Option<f64>Force applied (N)
torque_nm: Option<f64>Torque applied (Nm)
tcp_offset: Option<Position3D>Tool center point offset
Trait Implementations§
Source§impl Clone for EndEffector
impl Clone for EndEffector
Source§fn clone(&self) -> EndEffector
fn clone(&self) -> EndEffector
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 EndEffector
impl Debug for EndEffector
Source§impl Default for EndEffector
impl Default for EndEffector
Source§fn default() -> EndEffector
fn default() -> EndEffector
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndEffector
impl<'de> Deserialize<'de> for EndEffector
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EndEffector
impl RefUnwindSafe for EndEffector
impl Send for EndEffector
impl Sync for EndEffector
impl Unpin for EndEffector
impl UnwindSafe for EndEffector
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