#[repr(u32)]pub enum mjtTimer_ {
Show 16 variants
mjTIMER_STEP = 0,
mjTIMER_FORWARD = 1,
mjTIMER_INVERSE = 2,
mjTIMER_POSITION = 3,
mjTIMER_VELOCITY = 4,
mjTIMER_ACTUATION = 5,
mjTIMER_CONSTRAINT = 6,
mjTIMER_ADVANCE = 7,
mjTIMER_POS_KINEMATICS = 8,
mjTIMER_POS_INERTIA = 9,
mjTIMER_POS_COLLISION = 10,
mjTIMER_POS_MAKE = 11,
mjTIMER_POS_PROJECT = 12,
mjTIMER_COL_BROAD = 13,
mjTIMER_COL_NARROW = 14,
mjNTIMER = 15,
}Variants§
mjTIMER_STEP = 0
mjTIMER_FORWARD = 1
mjTIMER_INVERSE = 2
mjTIMER_POSITION = 3
mjTIMER_VELOCITY = 4
mjTIMER_ACTUATION = 5
mjTIMER_CONSTRAINT = 6
mjTIMER_ADVANCE = 7
mjTIMER_POS_KINEMATICS = 8
mjTIMER_POS_INERTIA = 9
mjTIMER_POS_COLLISION = 10
mjTIMER_POS_MAKE = 11
mjTIMER_POS_PROJECT = 12
mjTIMER_COL_BROAD = 13
mjTIMER_COL_NARROW = 14
mjNTIMER = 15
Trait Implementations§
impl Copy for mjtTimer_
impl Eq for mjtTimer_
impl StructuralPartialEq for mjtTimer_
Auto Trait Implementations§
impl Freeze for mjtTimer_
impl RefUnwindSafe for mjtTimer_
impl Send for mjtTimer_
impl Sync for mjtTimer_
impl Unpin for mjtTimer_
impl UnsafeUnpin for mjtTimer_
impl UnwindSafe for mjtTimer_
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.