pub struct MjTupleModelViewMut<'d> {
pub objprm: PointerViewMut<'d, MjtNum>,
pub objtype: PointerViewMut<'d, MjtObj>,
pub adr: PointerViewUnsafeMut<'d, i32>,
pub size: PointerViewUnsafeMut<'d, i32>,
pub objid: PointerViewUnsafeMut<'d, i32>,
}Expand description
Mutable view into MjModel arrays for a tuple.
Read-write fields are PointerViewMut; read-only fields are PointerViewUnsafeMut, which require as_mut_slice and explicit unsafe to mutate.
Fields§
§objprm: PointerViewMut<'d, MjtNum>Mutable view of objprm.
objtype: PointerViewMut<'d, MjtObj>Mutable view of objtype.
adr: PointerViewUnsafeMut<'d, i32>Read-only view of adr. Requires unsafe for mutation.
size: PointerViewUnsafeMut<'d, i32>Read-only view of size. Requires unsafe for mutation.
objid: PointerViewUnsafeMut<'d, i32>Read-only view of objid. Requires unsafe for mutation.
Implementations§
Source§impl MjTupleModelViewMut<'_>
impl MjTupleModelViewMut<'_>
Trait Implementations§
Auto Trait Implementations§
impl<'d> !Send for MjTupleModelViewMut<'d>
impl<'d> !Sync for MjTupleModelViewMut<'d>
impl<'d> !UnwindSafe for MjTupleModelViewMut<'d>
impl<'d> Freeze for MjTupleModelViewMut<'d>
impl<'d> RefUnwindSafe for MjTupleModelViewMut<'d>
impl<'d> Unpin for MjTupleModelViewMut<'d>
impl<'d> UnsafeUnpin for MjTupleModelViewMut<'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.