pub struct StepTiming {
pub broadphase: f64,
pub narrowphase: f64,
pub solve: f64,
pub integrate: f64,
}Expand description
Timing (in seconds) for the major phases of one simulation step.
Fields§
§broadphase: f64Time spent in broad-phase collision detection.
narrowphase: f64Time spent in narrow-phase collision detection.
solve: f64Time spent in constraint solve.
integrate: f64Time spent integrating positions/velocities.
Implementations§
Trait Implementations§
Source§impl Clone for StepTiming
impl Clone for StepTiming
Source§fn clone(&self) -> StepTiming
fn clone(&self) -> StepTiming
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StepTiming
impl Debug for StepTiming
Source§impl Default for StepTiming
impl Default for StepTiming
Source§fn default() -> StepTiming
fn default() -> StepTiming
Returns the “default value” for a type. Read more
Source§impl PartialEq for StepTiming
impl PartialEq for StepTiming
Source§fn eq(&self, other: &StepTiming) -> bool
fn eq(&self, other: &StepTiming) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StepTiming
Auto Trait Implementations§
impl Freeze for StepTiming
impl RefUnwindSafe for StepTiming
impl Send for StepTiming
impl Sync for StepTiming
impl Unpin for StepTiming
impl UnsafeUnpin for StepTiming
impl UnwindSafe for StepTiming
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.