pub struct ABGStep<T: Copy> {
pub time: Timestamp<T>,
pub predicted_value: f64,
pub predicted_velocity: f64,
pub estimated_value: f64,
pub estimated_velocity: f64,
pub estimated_acceleration: f64,
pub residual_error: f64,
}
Fields§
§time: Timestamp<T>
§predicted_value: f64
§predicted_velocity: f64
§estimated_value: f64
§estimated_velocity: f64
§estimated_acceleration: f64
§residual_error: f64
Trait Implementations§
impl<T: Copy + Copy> Copy for ABGStep<T>
Auto Trait Implementations§
impl<T> Freeze for ABGStep<T>
impl<T> RefUnwindSafe for ABGStep<T>where
T: RefUnwindSafe,
impl<T> Send for ABGStep<T>where
T: Send,
impl<T> Sync for ABGStep<T>where
T: Sync,
impl<T> Unpin for ABGStep<T>where
T: Unpin,
impl<T> UnwindSafe for ABGStep<T>where
T: UnwindSafe,
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