pub struct HandGuiding {
pub enabled: Option<bool>,
pub is_active: Option<bool>,
pub detected_force_n: Option<f64>,
pub compliance_level: Option<String>,
pub recording_path: Option<bool>,
}Expand description
Hand guiding mode information (for collaborative robots).
Fields§
§enabled: Option<bool>Whether hand guiding is enabled
is_active: Option<bool>Whether currently being guided
detected_force_n: Option<f64>Detected force from human (N)
compliance_level: Option<String>Compliance level
recording_path: Option<bool>Whether recording path
Trait Implementations§
Source§impl Clone for HandGuiding
impl Clone for HandGuiding
Source§fn clone(&self) -> HandGuiding
fn clone(&self) -> HandGuiding
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 HandGuiding
impl Debug for HandGuiding
Source§impl Default for HandGuiding
impl Default for HandGuiding
Source§fn default() -> HandGuiding
fn default() -> HandGuiding
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HandGuiding
impl<'de> Deserialize<'de> for HandGuiding
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 HandGuiding
impl RefUnwindSafe for HandGuiding
impl Send for HandGuiding
impl Sync for HandGuiding
impl Unpin for HandGuiding
impl UnwindSafe for HandGuiding
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