#[repr(C)]pub struct astro_libration_t {
pub elat: f64,
pub elon: f64,
pub mlat: f64,
pub mlon: f64,
pub dist_km: f64,
pub diam_deg: f64,
}Expand description
@brief Lunar libration angles, returned by #Astronomy_Libration.
Fields§
§elat: f64< Sub-Earth libration ecliptic latitude angle, in degrees.
elon: f64< Sub-Earth libration ecliptic longitude angle, in degrees.
mlat: f64< Moon’s geocentric ecliptic latitude, in degrees.
mlon: f64< Moon’s geocentric ecliptic longitude, in degrees.
dist_km: f64< Distance between the centers of the Earth and Moon in kilometers.
diam_deg: f64< The apparent angular diameter of the Moon, in degrees, as seen from the center of the Earth.
Trait Implementations§
Source§impl Clone for astro_libration_t
impl Clone for astro_libration_t
Source§fn clone(&self) -> astro_libration_t
fn clone(&self) -> astro_libration_t
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 astro_libration_t
impl Debug for astro_libration_t
impl Copy for astro_libration_t
Auto Trait Implementations§
impl Freeze for astro_libration_t
impl RefUnwindSafe for astro_libration_t
impl Send for astro_libration_t
impl Sync for astro_libration_t
impl Unpin for astro_libration_t
impl UnwindSafe for astro_libration_t
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