pub struct SimState<T> {
pub q: Array1<T>,
pub qd: Array1<T>,
}Expand description
Joint position and velocity state.
Fields§
§q: Array1<T>§qd: Array1<T>Implementations§
Trait Implementations§
Source§impl<T: PartialEq> PartialEq for SimState<T>
impl<T: PartialEq> PartialEq for SimState<T>
impl<T> StructuralPartialEq for SimState<T>
Auto Trait Implementations§
impl<T> Freeze for SimState<T>
impl<T> RefUnwindSafe for SimState<T>where
T: RefUnwindSafe,
impl<T> Send for SimState<T>where
T: Send,
impl<T> Sync for SimState<T>where
T: Sync,
impl<T> Unpin for SimState<T>
impl<T> UnsafeUnpin for SimState<T>
impl<T> UnwindSafe for SimState<T>where
T: RefUnwindSafe,
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