pub struct Limits {
pub p_max: f64,
pub v_max: f64,
pub t_max: f64,
}Expand description
Per-motor-type physical limits used to scale MIT commands and unscale state replies.
Fields§
§p_max: f64Position magnitude limit (radians).
v_max: f64Velocity magnitude limit (rad/s).
t_max: f64Torque magnitude limit (Nm).
Trait Implementations§
impl Copy for Limits
impl StructuralPartialEq for Limits
Auto Trait Implementations§
impl Freeze for Limits
impl RefUnwindSafe for Limits
impl Send for Limits
impl Sync for Limits
impl Unpin for Limits
impl UnsafeUnpin for Limits
impl UnwindSafe for Limits
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