pub struct ModelerResult {
pub pos: (f64, f64),
pub velocity: (f64, f64),
pub acceleration: (f64, f64),
pub time: f64,
pub pressure: f64,
}
Expand description
result struct contains the position, time, presusre as well as the velocity and acceleration data
Fields§
§pos: (f64, f64)
§velocity: (f64, f64)
§acceleration: (f64, f64)
§time: f64
§pressure: f64
Trait Implementations§
source§impl Debug for ModelerResult
impl Debug for ModelerResult
source§impl Default for ModelerResult
impl Default for ModelerResult
source§impl PartialEq for ModelerResult
impl PartialEq for ModelerResult
impl StructuralPartialEq for ModelerResult
Auto Trait Implementations§
impl Freeze for ModelerResult
impl RefUnwindSafe for ModelerResult
impl Send for ModelerResult
impl Sync for ModelerResult
impl Unpin for ModelerResult
impl UnwindSafe for ModelerResult
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