pub struct TimeStampedCartesian {
pub time: TimeDelta,
pub state: Cartesian,
}Expand description
A Cartesian state paired with a timestamp.
Fields§
§time: TimeDeltaThe timestamp of the state.
state: CartesianThe Cartesian state vector.
Trait Implementations§
Source§impl FromIterator<TimeStampedCartesian> for CartesianTrajectory
impl FromIterator<TimeStampedCartesian> for CartesianTrajectory
Source§fn from_iter<T: IntoIterator<Item = TimeStampedCartesian>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = TimeStampedCartesian>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations§
impl Freeze for TimeStampedCartesian
impl RefUnwindSafe for TimeStampedCartesian
impl Send for TimeStampedCartesian
impl Sync for TimeStampedCartesian
impl Unpin for TimeStampedCartesian
impl UnsafeUnpin for TimeStampedCartesian
impl UnwindSafe for TimeStampedCartesian
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