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 size used

error in the previous integration step

number of attempts needed by an adaptive step size to be within the tolerance

Trait Implementations

impl Clone for IntegrationDetails
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for IntegrationDetails
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations