pub struct JointLimits<T> {
pub lower: T,
pub upper: T,
pub velocity: T,
pub effort: T,
}Fields§
§lower: T§upper: T§velocity: T§effort: TTrait Implementations§
Source§impl<T: Clone> Clone for JointLimits<T>
impl<T: Clone> Clone for JointLimits<T>
Source§fn clone(&self) -> JointLimits<T>
fn clone(&self) -> JointLimits<T>
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<T: Debug> Debug for JointLimits<T>
impl<T: Debug> Debug for JointLimits<T>
Source§impl<T: PartialEq> PartialEq for JointLimits<T>
impl<T: PartialEq> PartialEq for JointLimits<T>
Source§fn eq(&self, other: &JointLimits<T>) -> bool
fn eq(&self, other: &JointLimits<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for JointLimits<T>
Auto Trait Implementations§
impl<T> Freeze for JointLimits<T>where
T: Freeze,
impl<T> RefUnwindSafe for JointLimits<T>where
T: RefUnwindSafe,
impl<T> Send for JointLimits<T>where
T: Send,
impl<T> Sync for JointLimits<T>where
T: Sync,
impl<T> Unpin for JointLimits<T>where
T: Unpin,
impl<T> UnsafeUnpin for JointLimits<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for JointLimits<T>where
T: UnwindSafe,
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