pub struct AdaptiveResult {
pub xs: Vec<f64>,
pub ys: Vec<f64>,
pub rejected_steps: usize,
pub accepted_steps: usize,
}Expand description
Result of an adaptive ODE solve.
Fields§
§xs: Vec<f64>x values at accepted steps.
ys: Vec<f64>y values at accepted steps.
rejected_steps: usizeNumber of rejected steps.
accepted_steps: usizeNumber of accepted steps.
Trait Implementations§
Source§impl Clone for AdaptiveResult
impl Clone for AdaptiveResult
Source§fn clone(&self) -> AdaptiveResult
fn clone(&self) -> AdaptiveResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AdaptiveResult
impl RefUnwindSafe for AdaptiveResult
impl Send for AdaptiveResult
impl Sync for AdaptiveResult
impl Unpin for AdaptiveResult
impl UnsafeUnpin for AdaptiveResult
impl UnwindSafe for AdaptiveResult
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