#[non_exhaustive]pub struct StayWithinFormat {
pub lower_bound: Resolution,
pub upper_bound: Resolution,
pub feedforward_torque: Resolution,
pub kp_scale: Resolution,
pub kd_scale: Resolution,
pub maximum_torque: Resolution,
pub watchdog_timeout: Resolution,
pub ilimit_scale: Resolution,
pub ignore_position_bounds: Resolution,
}Expand description
Format for stay-within mode commands.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.lower_bound: Resolution§upper_bound: Resolution§feedforward_torque: Resolution§kp_scale: Resolution§kd_scale: Resolution§maximum_torque: Resolution§watchdog_timeout: Resolution§ilimit_scale: Resolution§ignore_position_bounds: ResolutionTrait Implementations§
Source§impl Clone for StayWithinFormat
impl Clone for StayWithinFormat
Source§fn clone(&self) -> StayWithinFormat
fn clone(&self) -> StayWithinFormat
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 StayWithinFormat
impl Debug for StayWithinFormat
Auto Trait Implementations§
impl Freeze for StayWithinFormat
impl RefUnwindSafe for StayWithinFormat
impl Send for StayWithinFormat
impl Sync for StayWithinFormat
impl Unpin for StayWithinFormat
impl UnsafeUnpin for StayWithinFormat
impl UnwindSafe for StayWithinFormat
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