pub struct QuadResult<S: Scalar> {
pub value: S,
pub error_estimate: S,
pub n_evaluations: usize,
pub n_subdivisions: usize,
}Expand description
Result of numerical integration.
Fields§
§value: SEstimated value of the integral.
error_estimate: SEstimated absolute error.
n_evaluations: usizeNumber of function evaluations.
n_subdivisions: usizeNumber of subinterval subdivisions performed.
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for QuadResult<S>where
S: Freeze,
impl<S> RefUnwindSafe for QuadResult<S>where
S: RefUnwindSafe,
impl<S> Send for QuadResult<S>
impl<S> Sync for QuadResult<S>
impl<S> Unpin for QuadResult<S>where
S: Unpin,
impl<S> UnsafeUnpin for QuadResult<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for QuadResult<S>where
S: 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