pub struct KeplerSolution {
pub eccentric_anomaly: Radians,
pub iterations: u32,
pub residual: f64,
}Expand description
Result of Kepler equation solver.
Fields§
§eccentric_anomaly: RadiansEccentric anomaly (radians)
iterations: u32Number of iterations used
residual: f64Final residual |M - (E - e*sin(E))|
Trait Implementations§
Source§impl Clone for KeplerSolution
impl Clone for KeplerSolution
Source§fn clone(&self) -> KeplerSolution
fn clone(&self) -> KeplerSolution
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KeplerSolution
impl Debug for KeplerSolution
impl Copy for KeplerSolution
Auto Trait Implementations§
impl Freeze for KeplerSolution
impl RefUnwindSafe for KeplerSolution
impl Send for KeplerSolution
impl Sync for KeplerSolution
impl Unpin for KeplerSolution
impl UnwindSafe for KeplerSolution
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