Struct nyx_space::propagators::IntegrationDetails
[−]
[src]
pub struct IntegrationDetails { pub step: f64, pub error: f64, pub attempts: u8, }
Stores the details of the previous integration step of a given propagator. Access as my_prop.clone().latest_details()
.
Fields
step: f64
step size used
error: f64
error in the previous integration step
attempts: u8
number of attempts needed by an adaptive step size to be within the tolerance
Trait Implementations
impl Clone for IntegrationDetails
[src]
fn clone(&self) -> IntegrationDetails
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more