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
Mutable view into MjModel arrays for a key.
Read-write fields are PointerViewMut; read-only fields are PointerViewUnsafeMut, which require as_mut_slice and explicit unsafe to mutate.
Fields§
§time: PointerViewMut<'d, MjtNum>Mutable view of time.
qpos: PointerViewMut<'d, MjtNum>Mutable view of qpos.
qvel: PointerViewMut<'d, MjtNum>Mutable view of qvel.
act: PointerViewMut<'d, MjtNum>Mutable view of act.
mpos: PointerViewMut<'d, MjtNum>Mutable view of mpos.
mquat: PointerViewMut<'d, MjtNum>Mutable view of mquat.
ctrl: PointerViewMut<'d, MjtNum>Mutable view of ctrl.
Implementations§
Source§impl MjKeyModelViewMut<'_>
impl MjKeyModelViewMut<'_>
Trait Implementations§
Auto Trait Implementations§
impl<'d> !Send for MjKeyModelViewMut<'d>
impl<'d> !Sync for MjKeyModelViewMut<'d>
impl<'d> !UnwindSafe for MjKeyModelViewMut<'d>
impl<'d> Freeze for MjKeyModelViewMut<'d>
impl<'d> RefUnwindSafe for MjKeyModelViewMut<'d>
impl<'d> Unpin for MjKeyModelViewMut<'d>
impl<'d> UnsafeUnpin 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.