pub struct SimStepResult<T> {
pub state: SimState<T>,
pub qdd: Array1<T>,
pub ee_pose: Option<Transform3<T>>,
}Expand description
Output of one semi-implicit Euler step.
Fields§
§state: SimState<T>§qdd: Array1<T>§ee_pose: Option<Transform3<T>>Trait Implementations§
Source§impl<T: Clone> Clone for SimStepResult<T>
impl<T: Clone> Clone for SimStepResult<T>
Source§fn clone(&self) -> SimStepResult<T>
fn clone(&self) -> SimStepResult<T>
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<T: Debug> Debug for SimStepResult<T>
impl<T: Debug> Debug for SimStepResult<T>
Source§impl<T: PartialEq> PartialEq for SimStepResult<T>
impl<T: PartialEq> PartialEq for SimStepResult<T>
Source§fn eq(&self, other: &SimStepResult<T>) -> bool
fn eq(&self, other: &SimStepResult<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for SimStepResult<T>
Auto Trait Implementations§
impl<T> Freeze for SimStepResult<T>
impl<T> RefUnwindSafe for SimStepResult<T>where
T: RefUnwindSafe,
impl<T> Send for SimStepResult<T>where
T: Send,
impl<T> Sync for SimStepResult<T>where
T: Sync,
impl<T> Unpin for SimStepResult<T>
impl<T> UnsafeUnpin for SimStepResult<T>
impl<T> UnwindSafe for SimStepResult<T>where
T: RefUnwindSafe,
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