pub struct MjKeyModelViewMut<'d> {
pub time: PointerViewMut<'d, MjtNum>,
pub qpos: PointerViewMut<'d, MjtNum>,
pub qvel: PointerViewMut<'d, MjtNum>,
pub act: PointerViewMut<'d, MjtNum>,
pub mpos: PointerViewMut<'d, MjtNum>,
pub mquat: PointerViewMut<'d, MjtNum>,
pub ctrl: PointerViewMut<'d, MjtNum>,
}
Expand description
A mutable view to key variables of MjModel
.
Fields§
§time: PointerViewMut<'d, MjtNum>
§qpos: PointerViewMut<'d, MjtNum>
§qvel: PointerViewMut<'d, MjtNum>
§act: PointerViewMut<'d, MjtNum>
§mpos: PointerViewMut<'d, MjtNum>
§mquat: PointerViewMut<'d, MjtNum>
§ctrl: PointerViewMut<'d, MjtNum>
Implementations§
Source§impl MjKeyModelViewMut<'_>
impl MjKeyModelViewMut<'_>
Auto Trait Implementations§
impl<'d> Freeze for MjKeyModelViewMut<'d>
impl<'d> RefUnwindSafe for MjKeyModelViewMut<'d>
impl<'d> !Send for MjKeyModelViewMut<'d>
impl<'d> !Sync for MjKeyModelViewMut<'d>
impl<'d> Unpin for MjKeyModelViewMut<'d>
impl<'d> !UnwindSafe for MjKeyModelViewMut<'d>
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