enum FitResult {
ParamVal(f64),
SegmentError(f64),
CuspFound(f64),
}
Variants§
ParamVal(f64)
The parameter (t
) value that meets the desired accuracy.
SegmentError(f64)
Error of the measured segment.
CuspFound(f64)
The parameter value where a cusp was found.
Auto Trait Implementations§
impl Freeze for FitResult
impl RefUnwindSafe for FitResult
impl Send for FitResult
impl Sync for FitResult
impl Unpin for FitResult
impl UnwindSafe for FitResult
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