pub struct Nutation {
pub longitude: f64,
pub obliquity: f64,
}Expand description
Structure containing both nutation components.
This is convenient when you need both values and want to avoid duplicate calculations of the fundamental arguments.
Fields§
§longitude: f64Nutation in longitude (Δψ) in arcseconds
obliquity: f64Nutation in obliquity (Δε) in arcseconds
Trait Implementations§
impl Copy for Nutation
impl StructuralPartialEq for Nutation
Auto Trait Implementations§
impl Freeze for Nutation
impl RefUnwindSafe for Nutation
impl Send for Nutation
impl Sync for Nutation
impl Unpin for Nutation
impl UnsafeUnpin for Nutation
impl UnwindSafe for Nutation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more